Interactive neural network visual debugger for model graph inspection and activation/gradient health analysis.
- Parses layer configuration into graph nodes and edges.
- Estimates layer parameter counts and model complexity signals.
- Analyzes activation sparsity and dead-neuron ratios.
- Detects gradient vanishing risk from captured gradient values.
- Stores analysis sessions with API and dashboard visibility.
- Backend: FastAPI + SQLite
- Frontend: React + Vite + TypeScript
- Deployment: Docker, Docker Compose, GitHub Actions, GHCR, GitHub Pages
cp .env.example .env
cd backend
python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install -r requirements.txt
pytest -q
cd ../frontend
npm install
npm run buildRun full stack:
docker compose --env-file .env -f docker-compose.yml up --build- docs/API.md
- docs/DEPLOYMENT.md
- docs/OPERATIONS.md
- docs/FUTURE-CLARIFICATIONS.md
- v0.1.0 baseline: deploy-ready foundation
- Next: live hook integrations for PyTorch/TF runtime captures and richer graph rendering
