KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
predictive-maintenance-ai
★ 9
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
cursor-token-prices-chrome-extension
:
No description available.
jetbrains
:
JetBrains Support for Geode
obsidian-zettelkasten-setup
:
Zettelkasten + PARA 방법론 기반 Obsidian Vault 템플릿. Claude Code 연동, Dataview/Templater 자동화 포함.
Awesome-GUI-World-Model
:
A curated list of papers and resources for GUI world models.
gmail_treemax
:
Simple app, provides a quick treemap visualization of your unread Gmail emails.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
predictive-maintenance-ai
?
Download (.md)
# Predictive-Maintenance Machine Health Prediction System with NASA Turbofan Engine Dataset (FD002) ## Features - **Real-time Dashboard**: Live sensor data visualization - **ML Predictions**: Remaining Useful Life (RUL) predictions - **Health Status**: HEALTHY / WARNING / CRITICAL classifications - **NASA FD002 Dataset**: 34,491 sensor readings loaded ## Tech Stack ### Frontend - React + TypeScript - Vite - Tailwind CSS - shadcn-ui - TanStack React Query ### Backend - Node.js + Express - SQLite (better-sqlite3) - RESTful API ## Quick Start ```sh # Clone the repository git clone https://github.com/mohith182/Predictive-Maintenance.git cd Predictive-Maintenance # Install frontend dependencies npm install # Install backend dependencies cd backend npm install # Load NASA FD002 dataset (requires dataset files in Downloads/archive) node loadData.js # Start backend server (port 3001) node server.js # In another terminal, start frontend (port 8080) cd .. npm run dev ``` ## API Endpoints | Endpoint | Description | |----------|-------------| | GET /api/readings | Sensor readings (temperature, vibration, current, RUL) | | GET /api/predictions | Health predictions with status | | POST /api/predict | Make new prediction | ## Dataset Uses NASA C-MAPSS Turbofan Engine Degradation dataset (FD002): - 259 engines - 33,991 test readings - 3,516 predictions ## Project Structure ``` ├── src/ # React frontend │ ├── components/ # UI components │ ├── lib/ # API client, React Query hooks │ └── pages/ # Dashboard, Login, etc. ├── backend/ # Node.js backend │ ├── controllers/ # Business logic │ ├── routes/ # API routes │ ├── db.js # SQLite connection │ └── server.js # Express server └── public/ # Static assets ```