Darveht commited on
Commit
4d78caa
·
verified ·
1 Parent(s): a9f93a0

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +81 -0
.gitignore ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ MANIFEST
23
+
24
+ # Virtual environments
25
+ venv/
26
+ env/
27
+ ENV/
28
+ env.bak/
29
+ venv.bak/
30
+
31
+ # IDE
32
+ .vscode/
33
+ .idea/
34
+ *.swp
35
+ *.swo
36
+ *~
37
+
38
+ # OS
39
+ .DS_Store
40
+ .DS_Store?
41
+ ._*
42
+ .Spotlight-V100
43
+ .Trashes
44
+ ehthumbs.db
45
+ Thumbs.db
46
+
47
+ # Logs
48
+ *.log
49
+ logs/
50
+
51
+ # Cache
52
+ .cache/
53
+ *.cache
54
+ .pytest_cache/
55
+
56
+ # Temporary files
57
+ *.tmp
58
+ *.temp
59
+ /tmp/
60
+ temp/
61
+
62
+ # Model files (will be downloaded)
63
+ models/
64
+ cache/
65
+ .zenvision/
66
+
67
+ # Environment variables
68
+ .env
69
+ .env.local
70
+ .env.production
71
+
72
+ # Jupyter
73
+ .ipynb_checkpoints/
74
+
75
+ # Coverage
76
+ .coverage
77
+ htmlcov/
78
+
79
+ # Testing
80
+ .tox/
81
+ .pytest_cache/