A web-based graphical user interface for managing and monitoring machine learning workflows with medical time-series data. This application provides an interface for configuring data processing pipelines, training models, performing classification tasks, and visualizing results.
- Process Management: Configure and monitor machine learning workflows including data preprocessing, feature selection, model training, and evaluation
- Data Exploration: Interactive dataset viewer and analysis tools
- Classification: Perform time-series classification with real-time progress tracking
- Results Visualization: View and analyze training metrics, evaluation results, and model performance
- Live Monitoring: Real-time process logs and status updates
packages/frontend/- React-based web interface built with Vite, TanStack Router, and Radix UIpackages/backend/- Express.js server with tRPC API for process management and Python integrationpackages/core/- Shared types and utilities
-
Install dependencies:
pnpm install
-
Set up Python environment (if needed for backend processing)
Start both frontend and backend in development mode:
pnpm devThis will start:
- Frontend: http://localhost:5173
- Backend: http://localhost:3000
You can also run them separately:
- Frontend only:
pnpm dev:frontend - Backend only:
pnpm dev:backend