Skip to content

Commit ec4f5d6

Browse files
committed
Task 1 complete: project setup, documentation, basic files, notebooks done
1 parent bb08752 commit ec4f5d6

25 files changed

+5736
-46
lines changed

.github/workflows/ci.yml

Lines changed: 400 additions & 0 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 185 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.nox/
42+
.coverage
43+
.coverage.*
44+
.cache
45+
nosetests.xml
46+
coverage.xml
47+
*.cover
48+
*.py,cover
49+
.hypothesis/
50+
.pytest_cache/
51+
52+
# Jupyter Notebook
53+
.ipynb_checkpoints
54+
55+
# IPython
56+
profile_default/
57+
ipython_config.py
58+
59+
# pyenv
60+
.python-version
61+
62+
# pipenv
63+
Pipfile.lock
64+
65+
# PEP 582
66+
__pypackages__/
67+
68+
# Celery stuff
69+
celerybeat-schedule
70+
celerybeat.pid
71+
72+
# SageMath parsed files
73+
*.sage.py
74+
75+
# Environments
76+
.env
77+
.venv
78+
env/
79+
venv/
80+
ENV/
81+
env.bak/
82+
venv.bak/
83+
84+
# Spyder project settings
85+
.spyderproject
86+
.spyproject
87+
88+
# Rope project settings
89+
.ropeproject
90+
91+
# mkdocs documentation
92+
/site
93+
94+
# mypy
95+
.mypy_cache/
96+
.dmypy.json
97+
dmypy.json
98+
99+
# Pyre type checker
100+
.pyre/
101+
102+
# IDE settings
103+
.vscode/
104+
.idea/
105+
*.swp
106+
*.swo
107+
*~
108+
109+
# OS specific
110+
.DS_Store
111+
.DS_Store?
112+
._*
113+
.Spotlight-V100
114+
.Trashes
115+
ehthumbs.db
116+
Thumbs.db
117+
118+
# Machine Learning / AI specific
119+
*.pt
120+
*.pth
121+
*.pkl
122+
*.pickle
123+
*.h5
124+
*.hdf5
125+
*.onnx
126+
*.pb
127+
*.ckpt
128+
*.model
129+
*.weights
130+
*.log
131+
*.logs
132+
logs/
133+
tensorboard_logs/
134+
wandb/
135+
mlruns/
136+
137+
# Video files (large files)
138+
*.mp4
139+
*.avi
140+
*.mov
141+
*.mkv
142+
*.flv
143+
*.wmv
144+
*.webm
145+
*.m4v
146+
147+
# Image files (processed)
148+
data/processed/
149+
data/raw/*.jpg
150+
data/raw/*.jpeg
151+
data/raw/*.png
152+
data/raw/*.bmp
153+
data/raw/*.tiff
154+
155+
# Model checkpoints and weights
156+
models/trained/
157+
models/checkpoints/
158+
models/sam/*.pth
159+
models/sam/*.pt
160+
161+
# Azure specific
162+
.azure/
163+
.azureml/
164+
*.json.logs
165+
outputs/
166+
logs/
167+
168+
# Temporary files
169+
*.tmp
170+
*.temp
171+
temp/
172+
tmp/
173+
174+
# Dataset downloads
175+
*.zip
176+
*.tar.gz
177+
*.tar
178+
*.rar
179+
180+
# Config files with secrets
181+
*secret*
182+
*credential*
183+
.env.local
184+
.env.production
185+
azure_config.json

0 commit comments

Comments
 (0)