apoorvrajdev commited on
Commit
430abdc
·
1 Parent(s): cce4499

refactor: create production-ready project structure

Browse files
.gitignore ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+
5
+ # Virtual environments
6
+ venv/
7
+ .venv/
8
+
9
+ # Jupyter
10
+ .ipynb_checkpoints/
11
+
12
+ # Environment variables
13
+ .env
14
+
15
+ # ML Models
16
+ *.h5
17
+ *.pt
18
+ *.pth
19
+ *.onnx
20
+
21
+ # Node
22
+ node_modules/
23
+
24
+ # Build
25
+ dist/
26
+ build/
27
+
28
+ # OS
29
+ .DS_Store
30
+ Thumbs.db
image-captionin-using-dl.ipynb → notebooks/image-captionin-using-dl.ipynb RENAMED
File without changes