likhonsheikh commited on
Commit
ffad9fe
·
verified ·
1 Parent(s): 06a98b8

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +47 -0
.gitignore ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Model files (use Git LFS)
2
+ *.safetensors
3
+ *.bin
4
+ model-*
5
+
6
+ # Python
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+ *.so
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+
28
+ # IDEs
29
+ .vscode/
30
+ .idea/
31
+ *.swp
32
+ *.swo
33
+
34
+ # OS
35
+ .DS_Store
36
+ Thumbs.db
37
+
38
+ # Training logs
39
+ logs/
40
+ *.log
41
+ wandb/
42
+ .mlflow/
43
+
44
+ # Data
45
+ *.csv
46
+ *.json
47
+ data/