prop/.gitignore
Graham McIntire 8949920b7f
Add Nx/Axon/EXLA ML model skeleton for propagation prediction
13-feature feed-forward network (atmospheric + temporal + frequency).
Includes build, init, predict, encode_features, save/load to disk.
Model weights saved to priv/models/propagation_v1.nx (gitignored).
Not yet trained — scaffolding only.
2026-03-31 16:26:34 -05:00

45 lines
871 B
Text

# The directory Mix will write compiled artifacts to.
/_build/
# If you run "mix test --cover", coverage assets end up here.
/cover/
# The directory Mix downloads your dependencies sources to.
/deps/
# Where 3rd-party dependencies like PHX://priv/static/
# temporary files for e.g. tests
/tmp/
# Ignore package tarball (built via "mix hex.build").
microwaveprop-*.tar
# Ignore assets that are produced by build tools.
/priv/static/assets/
# Ignore digested assets cache.
/priv/static/cache_manifest.json
# In case you use Node.js/Tailwind standalone binary
/assets/node_modules/
# Ignore database dumps
*.sql
*.dump
# Dotenv files
.env
.env.*
# Trained ML model weights (binary, large)
/priv/models/*.nx
# GRIB2 test fixtures (large binary files, downloaded on-demand)
/test/fixtures/grib2/*.grib2
# Git worktrees
/.worktrees/
# OS files
.DS_Store
Thumbs.db