Commit ·
9e63f3e
1
Parent(s): 3a90f82
Fix binary files with LFS
Browse files- .gitattributes +2 -0
- .gitignore +30 -0
- dhcd_architecture.png +3 -0
- results/classes.png +3 -0
- results/image copy.png +0 -0
- results/image.png +0 -0
- results/loss_curve.png +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --- Python & Jupyter ---
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
.ipynb_checkpoints/
|
| 5 |
+
*/.ipynb_checkpoints/*
|
| 6 |
+
|
| 7 |
+
# --- Mac System Files ---
|
| 8 |
+
.DS_Store
|
| 9 |
+
.DS_Store?
|
| 10 |
+
|
| 11 |
+
# --- Large Data (Important!) ---
|
| 12 |
+
DevanagariHandwrittenCharacterDataset/
|
| 13 |
+
|
| 14 |
+
# --- Model Weights (Large Files) ---
|
| 15 |
+
*.pth
|
| 16 |
+
*.pt
|
| 17 |
+
*.ckpt
|
| 18 |
+
|
| 19 |
+
# --- Environments ---
|
| 20 |
+
.env
|
| 21 |
+
.venv
|
| 22 |
+
env/
|
| 23 |
+
venv/
|
| 24 |
+
|
| 25 |
+
# -- -- IDEs and Editors ---
|
| 26 |
+
.vscode/
|
| 27 |
+
.idea/
|
| 28 |
+
*.sublime-project
|
| 29 |
+
*.sublime-workspace
|
| 30 |
+
*.code-workspace
|
dhcd_architecture.png
ADDED
|
Git LFS Details
|
results/classes.png
ADDED
|
Git LFS Details
|
results/image copy.png
DELETED
|
Binary file (28.8 kB)
|
|
|
results/image.png
DELETED
|
Binary file (28.8 kB)
|
|
|
results/loss_curve.png
ADDED
|
Git LFS Details
|