-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
44 lines (35 loc) · 1.08 KB
/
Copy path.gitignore
File metadata and controls
44 lines (35 loc) · 1.08 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
VarunaNet_Spec.md
# Internal working notes -- running log of bugs hit and how they were
# fixed. Local only, same as the spec file above.
error.md
# Python
__pycache__/
*.pyc
*.egg-info/
.pytest_cache/
.ruff_cache/
.venv/
venv/
.ipynb_checkpoints/
# Real downloaded datasets -- never belongs in git, fetched locally via
# data/download_sen1floods11.py instead.
datasets/
# Local tool config/permissions -- machine-specific, never belongs in git.
.claude/
# macOS Finder metadata.
.DS_Store
# W&B offline run data and training checkpoints -- local artifacts,
# synced/uploaded separately, never committed.
wandb/
checkpoints/
# Hydra's default per-run output directory.
outputs/
# Local Redis snapshot -- written to the cwd redis-server was started from
# during local dev/testing, never something to commit.
dump.rdb
# Local demo artifacts from inference/stage_demo_scene.py -- a staged real
# chip plus an untrained demo checkpoint/ONNX export, used to smoke-test the
# full stack end to end. Same reasoning as checkpoints/ above: regenerable,
# large, never something to commit.
demo_scenes/
.vercel