arpit-gour02 commited on
Commit
950e52a
·
1 Parent(s): 513288d

add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +23 -0
.gitignore ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ rvl_cdip_data/
13
+
14
+ # --- Model Weights (Large Files) ---
15
+ *.pth
16
+ *.pt
17
+ *.ckpt
18
+
19
+ # --- Environments ---
20
+ .env
21
+ .venv
22
+ env/
23
+ venv/