Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonysandesh committed Nov 19, 2024
0 parents commit 9833b24
Show file tree
Hide file tree
Showing 64 changed files with 2,329,727 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .bash_history
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
git login
git init
git add .
git commit -m "first commit"
git config --global user.email "[email protected]"
git commit -m "first commit"
git config user.email "[email protected]"
1 change: 1 addition & 0 deletions .git-credentials
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://hf_user:[email protected]
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vector_db_dir
55 changes: 55 additions & 0 deletions .idea/this_studio.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .lightning_studio/.studiorc
16 changes: 16 additions & 0 deletions .lightning_studio/on_start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

#!/bin/bash

# This script runs every time your Studio starts, from your home directory.

# List files under fast_load that need to load quickly on start (e.g. model checkpoints).
#
# ! fast_load
# <your file here>

# Add your startup commands below.
#
# Example: streamlit run my_app.py
# Example: gradio my_app.py

pip install xgboost==2.0.2
8 changes: 8 additions & 0 deletions .lightning_studio/on_stop.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

# This script runs every time your Studio sleeps, from your home directory.

# Add your shutdown commands below.
#
# Example: docker down my-container
# Example: sudo service mysql stop
Loading

0 comments on commit 9833b24

Please sign in to comment.