adnaan05 commited on
Commit
36b296e
·
1 Parent(s): 469c254

Clean up cache files and add .gitignore

Browse files
.gitignore ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python cache
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+ .Python
7
+
8
+ # Model files (will be downloaded from Google Drive)
9
+ models/
10
+ *.pt
11
+ *.pth
12
+
13
+ # Virtual environments
14
+ venv/
15
+ env/
16
+ ENV/
17
+
18
+ # IDE
19
+ .vscode/
20
+ .idea/
21
+
22
+ # OS
23
+ .DS_Store
24
+ Thumbs.db
25
+
26
+ # Data files
27
+ data/
28
+ *.csv
29
+ *.json
30
+
31
+ # Logs
32
+ *.log
33
+
34
+ # Jupyter notebooks
35
+ .ipynb_checkpoints/
36
+
37
+ # Temporary files
38
+ *.tmp
39
+ *.temp
src/__pycache__/app.cpython-312.pyc DELETED
Binary file (10.4 kB)
 
src/__pycache__/train.cpython-312.pyc DELETED
Binary file (6.34 kB)
 
src/config/__pycache__/config.cpython-311.pyc DELETED
Binary file (1.24 kB)
 
src/config/__pycache__/config.cpython-312.pyc DELETED
Binary file (1.36 kB)
 
src/data/__pycache__/dataset.cpython-311.pyc DELETED
Binary file (4.59 kB)
 
src/data/__pycache__/dataset.cpython-312.pyc DELETED
Binary file (4.18 kB)
 
src/data/__pycache__/download_datasets.cpython-312.pyc DELETED
Binary file (8.12 kB)
 
src/data/__pycache__/preprocessor.cpython-311.pyc DELETED
Binary file (6.18 kB)
 
src/data/__pycache__/preprocessor.cpython-312.pyc DELETED
Binary file (5.25 kB)
 
src/models/__pycache__/hybrid_model.cpython-311.pyc DELETED
Binary file (5 kB)
 
src/models/__pycache__/hybrid_model.cpython-312.pyc DELETED
Binary file (4.63 kB)
 
src/models/__pycache__/trainer.cpython-311.pyc DELETED
Binary file (9.48 kB)
 
src/models/__pycache__/trainer.cpython-312.pyc DELETED
Binary file (8.39 kB)
 
src/visualization/__pycache__/plot_metrics.cpython-312.pyc DELETED
Binary file (9.64 kB)