joeyisgoed commited on
Commit
48e561b
·
verified ·
1 Parent(s): 344a845

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +54 -0
.gitignore ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual environments
24
+ venv/
25
+ ENV/
26
+ env/
27
+
28
+ # IDEs
29
+ .vscode/
30
+ .idea/
31
+ *.swp
32
+ *.swo
33
+
34
+ # OS
35
+ .DS_Store
36
+ Thumbs.db
37
+
38
+ # Gradio
39
+ gradio_cached_examples/
40
+ flagged/
41
+
42
+ # Temporary files
43
+ *.tmp
44
+ *.temp
45
+ *.fa
46
+ *.bpseq
47
+ *.bpp
48
+
49
+ # Model files (if any large files are added)
50
+ *.pth
51
+ *.pt
52
+
53
+ # Logs
54
+ *.log