Spaces:
Sleeping
Sleeping
YanBoChen
commited on
Commit
Β·
d3ad7d4
1
Parent(s):
fcd6404
chore(.gitignore): update ignored files for environment and editor settings
Browse files- .gitignore +29 -0
- requirements.txt +8 -0
.gitignore
CHANGED
|
@@ -1,10 +1,18 @@
|
|
| 1 |
# π§ Virtual environments
|
| 2 |
genAIvenv/
|
| 3 |
.final_project_env/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
# π» OS / Editor garbage
|
| 6 |
.DS_Store
|
| 7 |
.vscode/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
# π Documentation and project folders
|
| 10 |
docs/
|
|
@@ -12,6 +20,7 @@ dataset/dataset/
|
|
| 12 |
|
| 13 |
# π§Ύ Compiled / output files
|
| 14 |
*.pyc
|
|
|
|
| 15 |
*.log
|
| 16 |
*.zip
|
| 17 |
*.tar.gz
|
|
@@ -20,6 +29,14 @@ dataset/dataset/
|
|
| 20 |
*.json
|
| 21 |
*.png
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
# π« Large files - models
|
| 24 |
models/cache/
|
| 25 |
models/cache/*.pkl
|
|
@@ -32,3 +49,15 @@ models/indices/annoy/*.ann
|
|
| 32 |
*.pkl
|
| 33 |
*.npy
|
| 34 |
*.ann
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# π§ Virtual environments
|
| 2 |
genAIvenv/
|
| 3 |
.final_project_env/
|
| 4 |
+
.env
|
| 5 |
+
.venv
|
| 6 |
+
env/
|
| 7 |
+
venv/
|
| 8 |
|
| 9 |
# π» OS / Editor garbage
|
| 10 |
.DS_Store
|
| 11 |
.vscode/
|
| 12 |
+
*.swp
|
| 13 |
+
*~
|
| 14 |
+
.idea/
|
| 15 |
+
*.iml
|
| 16 |
|
| 17 |
# π Documentation and project folders
|
| 18 |
docs/
|
|
|
|
| 20 |
|
| 21 |
# π§Ύ Compiled / output files
|
| 22 |
*.pyc
|
| 23 |
+
__pycache__/
|
| 24 |
*.log
|
| 25 |
*.zip
|
| 26 |
*.tar.gz
|
|
|
|
| 29 |
*.json
|
| 30 |
*.png
|
| 31 |
|
| 32 |
+
# π Secrets and configs
|
| 33 |
+
.env
|
| 34 |
+
.env.local
|
| 35 |
+
.env.*.local
|
| 36 |
+
*.pem
|
| 37 |
+
credentials.json
|
| 38 |
+
token.json
|
| 39 |
+
|
| 40 |
# π« Large files - models
|
| 41 |
models/cache/
|
| 42 |
models/cache/*.pkl
|
|
|
|
| 49 |
*.pkl
|
| 50 |
*.npy
|
| 51 |
*.ann
|
| 52 |
+
|
| 53 |
+
# π Jupyter Notebook
|
| 54 |
+
.ipynb_checkpoints
|
| 55 |
+
*/.ipynb_checkpoints/*
|
| 56 |
+
*.ipynb_checkpoints*
|
| 57 |
+
|
| 58 |
+
# π Coverage reports
|
| 59 |
+
htmlcov/
|
| 60 |
+
.coverage
|
| 61 |
+
.coverage.*
|
| 62 |
+
coverage.xml
|
| 63 |
+
*.cover
|
requirements.txt
CHANGED
|
@@ -32,13 +32,16 @@ huggingface-hub==0.33.4
|
|
| 32 |
idna==3.10
|
| 33 |
Jinja2==3.1.6
|
| 34 |
jiter==0.10.0
|
|
|
|
| 35 |
kiwisolver==1.4.8
|
| 36 |
markdown-it-py==3.0.0
|
| 37 |
MarkupSafe==3.0.2
|
| 38 |
matplotlib==3.10.3
|
| 39 |
mdurl==0.1.2
|
|
|
|
| 40 |
multidict==6.6.3
|
| 41 |
multiprocess==0.70.16
|
|
|
|
| 42 |
numpy==2.3.1
|
| 43 |
openai==1.97.0
|
| 44 |
orjson==3.11.0
|
|
@@ -62,6 +65,8 @@ rich==14.0.0
|
|
| 62 |
ruff==0.12.4
|
| 63 |
safehttpx==0.1.6
|
| 64 |
safetensors==0.5.3
|
|
|
|
|
|
|
| 65 |
seaborn==0.13.2
|
| 66 |
semantic-version==2.10.0
|
| 67 |
sentence-transformers==3.0.1
|
|
@@ -69,8 +74,11 @@ shellingham==1.5.4
|
|
| 69 |
six==1.17.0
|
| 70 |
sniffio==1.3.1
|
| 71 |
starlette==0.47.2
|
|
|
|
|
|
|
| 72 |
tokenizers==0.21.2
|
| 73 |
tomlkit==0.13.3
|
|
|
|
| 74 |
tqdm==4.67.1
|
| 75 |
transformers==4.53.2
|
| 76 |
typer==0.16.0
|
|
|
|
| 32 |
idna==3.10
|
| 33 |
Jinja2==3.1.6
|
| 34 |
jiter==0.10.0
|
| 35 |
+
joblib==1.5.1
|
| 36 |
kiwisolver==1.4.8
|
| 37 |
markdown-it-py==3.0.0
|
| 38 |
MarkupSafe==3.0.2
|
| 39 |
matplotlib==3.10.3
|
| 40 |
mdurl==0.1.2
|
| 41 |
+
mpmath==1.3.0
|
| 42 |
multidict==6.6.3
|
| 43 |
multiprocess==0.70.16
|
| 44 |
+
networkx==3.5
|
| 45 |
numpy==2.3.1
|
| 46 |
openai==1.97.0
|
| 47 |
orjson==3.11.0
|
|
|
|
| 65 |
ruff==0.12.4
|
| 66 |
safehttpx==0.1.6
|
| 67 |
safetensors==0.5.3
|
| 68 |
+
scikit-learn==1.7.1
|
| 69 |
+
scipy==1.16.1
|
| 70 |
seaborn==0.13.2
|
| 71 |
semantic-version==2.10.0
|
| 72 |
sentence-transformers==3.0.1
|
|
|
|
| 74 |
six==1.17.0
|
| 75 |
sniffio==1.3.1
|
| 76 |
starlette==0.47.2
|
| 77 |
+
sympy==1.14.0
|
| 78 |
+
threadpoolctl==3.6.0
|
| 79 |
tokenizers==0.21.2
|
| 80 |
tomlkit==0.13.3
|
| 81 |
+
torch==2.7.1
|
| 82 |
tqdm==4.67.1
|
| 83 |
transformers==4.53.2
|
| 84 |
typer==0.16.0
|