Nexuss0781 commited on
Commit
160c09f
·
verified ·
1 Parent(s): fb3b54d

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +38 -35
.gitignore CHANGED
@@ -1,54 +1,57 @@
1
  ```
2
- # Dependencies
3
- __pycache__/
4
- *.pyc
5
- *.pyo
6
- *.pyd
7
- .env
8
- .env.local
9
- .env.*
10
 
11
- # Build and distribution artifacts
12
- dist/
13
- build/
14
- *.egg-info/
15
 
16
- # Editors
17
- .vscode/
18
- .idea/
 
19
 
20
  # Logs
21
  *.log
22
 
23
- # Coverage
24
- .coverage
 
 
 
25
  coverage/
26
  htmlcov/
 
27
 
28
- # OS
29
- .DS_Store
30
- Thumbs.db
31
-
32
- # Python specific
33
- *.pyc
34
  __pycache__/
35
- .Python
36
- *.so
37
- *.egg
38
- *.manifest
39
- *.spec
 
 
 
40
 
41
  # Virtual environments
42
  venv/
43
  .venv/
44
  env/
45
- ENV/
46
 
47
- # Testing
48
- .pytest_cache/
49
- .mypy_cache/
50
- .hypothesis/
 
51
 
52
- # Documentation
53
- docs/_build/
 
 
 
 
 
 
54
  ```
 
1
  ```
2
+ # Compressed files
3
+ *.gz
4
+ *.bz2
 
 
 
 
 
5
 
6
+ # Checkpoints and models
7
+ models/checkpoints/
8
+ models/EthioBBPE_*/
 
9
 
10
+ # Environment files
11
+ .env
12
+ .env.local
13
+ *.env.*
14
 
15
  # Logs
16
  *.log
17
 
18
+ # Temporary files
19
+ *.tmp
20
+ *.swp
21
+
22
+ # Coverage reports
23
  coverage/
24
  htmlcov/
25
+ .coverage
26
 
27
+ # Python cache
 
 
 
 
 
28
  __pycache__/
29
+ *.pyc
30
+ *.pyo
31
+ *.pyd
32
+
33
+ # Build directories
34
+ dist/
35
+ build/
36
+ *.egg-info/
37
 
38
  # Virtual environments
39
  venv/
40
  .venv/
41
  env/
 
42
 
43
+ # IDE files
44
+ .vscode/
45
+ .idea/
46
+ *.swp
47
+ *.swo
48
 
49
+ # OS files
50
+ .DS_Store
51
+ Thumbs.db
52
+
53
+ # MyPy cache
54
+ .mypy_cache/
55
+ # Pytest cache
56
+ .pytest_cache/
57
  ```