-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
152 lines (140 loc) · 1.99 KB
/
Copy path.gitignore
File metadata and controls
152 lines (140 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
## OS / filesystem
.DS_Store
Thumbs.db
Desktop.ini
$RECYCLE.BIN/
## Editors / IDEs
.vscode/
.idea/
*.iml
*.swp
*.swo
*~
## Local environment / secrets
.env
.env.*
!.env.example
*.local
## Python
__pycache__/
*.py[cod]
*$py.class
.python-version
.venv/
venv/
env/
ENV/
*.egg-info/
.pytest_cache/
.pytest-tmp/
pytest-cache-files-*/
pytest_tmp*/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
.cache/
## Build artifacts
build/
dist/
site/
tmp/
temp/
*.tmp
*.bak
*.orig
## Logs
*.log
logs/
## Jupyter
.ipynb_checkpoints/
## Android / Gradle
android/.gradle/
android/.idea/
android/.kotlin/
android/local.properties
android/eduscale
android/**/*.jks
android/**/*.keystore
eduscale.jks
*.jks
*.keystore
android/**/build/
android/**/outputs/
android/**/captures/
android/**/.cxx/
android/**/.externalNativeBuild/
*.apk
*.ap_
*.aab
*.dex
## Downloaded installers / archives
tools/downloads/
tools/tesseract-ocr/
*.exe
*.msi
*.zip
*.7z
*.rar
*.tar
*.tar.gz
*.tgz
## Generated document exports
*.pdf
*.html
*.htm
*.doc
*.docx
*.ppt
*.pptx
*.pps
*.ppsx
*.pot
*.potx
*.xls
*.xlsx
!thesis/templates/*.docx
## Generated outputs / reports
outputs/
benchmarks/results/
benchmarks/**/reports/
tools/**/reports/
tools/**/outputs/
thesis/output/
thesis/**/output/
## Machine learning model artifacts
models/**/checkpoints/
models/**/saved_model/
models/**/runs/
models/**/*.ckpt
models/**/*.h5
models/**/*.keras
models/**/*.joblib
models/**/*.onnx
models/**/*.pb
models/**/*.pkl
models/**/*.pt
models/**/*.pth
models/**/*.safetensors
models/**/*.tflite
## Datasets and generated training data
datasets/educational/
datasets/heldout-updated/
datasets/**/raw/
datasets/**/processed/
datasets/**/rendered/
datasets/**/frames/
datasets/**/videos/
datasets/**/lecture-videos/
datasets/**/benchmark/
datasets/**/custom-test-set/
datasets/**/div2k-subset/
datasets/**/reds-subset/
datasets/**/annotations/
datasets/**/powerpoint-slides/
!datasets/README.md
!datasets/scripts/
!datasets/scripts/**
!datasets/manifests/
!datasets/manifests/**