Coding-With-Bashir commited on
Commit
44bc71b
·
verified ·
1 Parent(s): ba278d6

Upload .\.gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .//.gitignore +45 -0
.//.gitignore ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Data folders (large files, don't commit)
2
+ data/raw/
3
+ data/processed/
4
+ data/raw/**/
5
+ !data/raw/.gitkeep
6
+ !data/processed/.gitkeep
7
+
8
+ # Model weights
9
+ models/*.bin
10
+ models/*.safetensors
11
+ models/*.pt
12
+ models/*.pth
13
+ outputs/
14
+ checkpoints/
15
+
16
+ # Python
17
+ __pycache__/
18
+ *.pyc
19
+ *.pyo
20
+ *.egg-info/
21
+ dist/
22
+ build/
23
+ *.egg
24
+
25
+ # Virtual environment
26
+ venv/
27
+ .venv/
28
+ env/
29
+
30
+ # IDE
31
+ .vscode/
32
+ .idea/
33
+ *.swp
34
+ *.swo
35
+
36
+ # OS
37
+ .DS_Store
38
+ Thumbs.db
39
+ desktop.ini
40
+
41
+ # Logs
42
+ *.log
43
+
44
+ # HuggingFace cache
45
+ .cache/