aibota01 commited on
Commit
057adc2
·
1 Parent(s): e93a251
Files changed (1) hide show
  1. .gitignore +33 -9
.gitignore CHANGED
@@ -1,13 +1,37 @@
1
- auto_evals/
2
- venv/
3
  __pycache__/
 
 
 
 
 
 
 
 
4
  .env
5
- .ipynb_checkpoints
6
- *ipynb
 
 
 
 
 
 
 
 
 
 
 
 
7
  .vscode/
8
 
9
- eval-queue/
10
- eval-results/
11
- eval-queue-bk/
12
- eval-results-bk/
13
- logs/
 
 
 
 
 
 
1
+ # Python
 
2
  __pycache__/
3
+ *.py[cod]
4
+ *.egg
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ *.log
9
+
10
+ # Environment
11
  .env
12
+ .venv/
13
+ venv/
14
+ ENV/
15
+ env/
16
+ *.env
17
+
18
+ # Jupyter
19
+ .ipynb_checkpoints/
20
+
21
+ # OS
22
+ .DS_Store
23
+ Thumbs.db
24
+
25
+ # VSCode
26
  .vscode/
27
 
28
+ # Data and results (optional, uncomment if needed)
29
+ # data/ground_truth.csv
30
+ # evaluation_results.csv
31
+
32
+ # Pytest cache
33
+ .pytest_cache/
34
+ .cache/
35
+
36
+ # Hugging Face Spaces metadata
37
+ huggingface.yaml