imkhan107 commited on
Commit
e7e4987
·
1 Parent(s): f9d300b

added files

Browse files
Files changed (1) hide show
  1. .gitignore +35 -0
.gitignore ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ *.pyc
3
+ __pycache__
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # Virtual Environment
8
+ venv/
9
+ env/
10
+ ENV/
11
+
12
+ # Jupyter Notebooks
13
+ .ipynb_checkpoints/
14
+
15
+ # Spyder project settings
16
+ .spyderproject
17
+ .spyproject
18
+
19
+ # PyCharm project settings
20
+ .idea/
21
+ *.iml
22
+
23
+ # Visual Studio Code settings
24
+ .vscode/
25
+
26
+ # Sublime Text settings
27
+ *.sublime-project
28
+ *.sublime-workspace
29
+
30
+ # PyTorch-specific
31
+ /.torch/
32
+
33
+ # Hugging Face Transformers
34
+ /.cache/
35
+ /.transformers/