Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 578 Bytes

File metadata and controls

27 lines (19 loc) · 578 Bytes

DeepLearningLab

Interactive deep learning (DL) visualizer playground.

This repo contains:

  • web/: Next.js (TypeScript + Tailwind) frontend for interactive visualizations
  • backend/: FastAPI backend for Python-side computation (later: PyTorch inference/training)

Run (dev)

Backend (FastAPI)

cd /Users/paulyang/Projects/DeepLearningLab
source .venv/bin/activate
pip install -r requirements.txt
uvicorn backend.main:app --reload --port 8000

Frontend (Next.js)

cd /Users/paulyang/Projects/DeepLearningLab/web
npm install
npm run dev