Tahereh Toosi commited on
Commit ·
c4da6bc
1
Parent(s): 64ce895
Add .gitignore and remove cache/log files
Browse files- Added comprehensive .gitignore for Python projects
- Removed __pycache__ files from tracking
- Removed log files from tracking
- Will prevent future tracking of cache, logs, and model files
.gitignore
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python cache files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
*.pyo
|
| 5 |
+
*.pyd
|
| 6 |
+
.Python
|
| 7 |
+
|
| 8 |
+
# Log files
|
| 9 |
+
logs/
|
| 10 |
+
*.log
|
| 11 |
+
|
| 12 |
+
# Model files (will be downloaded at runtime)
|
| 13 |
+
models/
|
| 14 |
+
*.pt
|
| 15 |
+
*.pth
|
| 16 |
+
*.ckpt
|
| 17 |
+
|
| 18 |
+
# Large image files (uploaded via web interface)
|
| 19 |
+
stimuli/*.jpg
|
| 20 |
+
stimuli/*.png
|
| 21 |
+
stimuli/*.jpeg
|
| 22 |
+
|
| 23 |
+
# Environment files
|
| 24 |
+
.env
|
| 25 |
+
.venv
|
| 26 |
+
env/
|
| 27 |
+
venv/
|
| 28 |
+
|
| 29 |
+
# IDE files
|
| 30 |
+
.vscode/
|
| 31 |
+
.idea/
|
| 32 |
+
*.swp
|
| 33 |
+
*.swo
|
| 34 |
+
|
| 35 |
+
# OS files
|
| 36 |
+
.DS_Store
|
| 37 |
+
Thumbs.db
|
| 38 |
+
|
| 39 |
+
# Temporary files
|
| 40 |
+
*.tmp
|
| 41 |
+
*.temp
|
__pycache__/inference.cpython-311.pyc
DELETED
|
Binary file (49.5 kB)
|
|
|
__pycache__/inference.cpython-38.pyc
DELETED
|
Binary file (7.2 kB)
|
|
|
logs/model_loading_resnet50_robust.log
DELETED
|
@@ -1,9 +0,0 @@
|
|
| 1 |
-
|
| 2 |
-
===== MODEL LOADING REPORT: resnet50_robust =====
|
| 3 |
-
Total parameters in checkpoint: 320
|
| 4 |
-
Total parameters in model: 320
|
| 5 |
-
Missing keys: 0 parameters
|
| 6 |
-
Unexpected keys: 0 parameters
|
| 7 |
-
Successfully loaded: 320 parameters (100.0%)
|
| 8 |
-
Loading status: ✅ COMPLETE - All important parameters loaded
|
| 9 |
-
========================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logs/model_loading_robust_resnet50.log
DELETED
|
@@ -1,9 +0,0 @@
|
|
| 1 |
-
|
| 2 |
-
===== MODEL LOADING REPORT: robust_resnet50 =====
|
| 3 |
-
Total parameters in checkpoint: 320
|
| 4 |
-
Total parameters in model: 320
|
| 5 |
-
Missing keys: 0 parameters
|
| 6 |
-
Unexpected keys: 0 parameters
|
| 7 |
-
Successfully loaded: 320 parameters (100.0%)
|
| 8 |
-
Loading status: ✅ COMPLETE - All important parameters loaded
|
| 9 |
-
========================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logs/model_loading_standard_resnet50.log
DELETED
|
@@ -1,9 +0,0 @@
|
|
| 1 |
-
|
| 2 |
-
===== MODEL LOADING REPORT: standard_resnet50 =====
|
| 3 |
-
Total parameters in checkpoint: 320
|
| 4 |
-
Total parameters in model: 320
|
| 5 |
-
Missing keys: 0 parameters
|
| 6 |
-
Unexpected keys: 0 parameters
|
| 7 |
-
Successfully loaded: 320 parameters (100.0%)
|
| 8 |
-
Loading status: ✅ COMPLETE - All important parameters loaded
|
| 9 |
-
========================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|