Commit ·
043ea3a
0
Parent(s):
chore: bootstrap NeuroBridge project skeleton
Browse files- .gitignore +27 -0
- data/processed/.gitkeep +0 -0
- data/raw/.gitkeep +0 -0
- pytest.ini +4 -0
- src/__init__.py +0 -0
- src/api/__init__.py +0 -0
- src/core/__init__.py +0 -0
- src/pipelines/__init__.py +0 -0
- tests/__init__.py +0 -0
- tests/core/__init__.py +0 -0
- tests/pipelines/__init__.py +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / cache
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*.egg-info/
|
| 5 |
+
.pytest_cache/
|
| 6 |
+
.mypy_cache/
|
| 7 |
+
.ruff_cache/
|
| 8 |
+
|
| 9 |
+
# Virtual envs
|
| 10 |
+
.venv/
|
| 11 |
+
venv/
|
| 12 |
+
env/
|
| 13 |
+
|
| 14 |
+
# Data — only keep folder structure, never raw payloads
|
| 15 |
+
data/raw/*
|
| 16 |
+
!data/raw/.gitkeep
|
| 17 |
+
data/processed/*
|
| 18 |
+
!data/processed/.gitkeep
|
| 19 |
+
|
| 20 |
+
# MLflow / experiment tracking
|
| 21 |
+
mlruns/
|
| 22 |
+
mlartifacts/
|
| 23 |
+
|
| 24 |
+
# IDE
|
| 25 |
+
.idea/
|
| 26 |
+
.vscode/
|
| 27 |
+
.DS_Store
|
data/processed/.gitkeep
ADDED
|
File without changes
|
data/raw/.gitkeep
ADDED
|
File without changes
|
pytest.ini
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[pytest]
|
| 2 |
+
testpaths = tests
|
| 3 |
+
pythonpath = .
|
| 4 |
+
addopts = -v --tb=short
|
src/__init__.py
ADDED
|
File without changes
|
src/api/__init__.py
ADDED
|
File without changes
|
src/core/__init__.py
ADDED
|
File without changes
|
src/pipelines/__init__.py
ADDED
|
File without changes
|
tests/__init__.py
ADDED
|
File without changes
|
tests/core/__init__.py
ADDED
|
File without changes
|
tests/pipelines/__init__.py
ADDED
|
File without changes
|