├── README.md ├── app.py ├── backend ├── .env ├── .gitignore ├── app.js ├── auth.js ├── db │ ├── dbConnect.js │ ├── questionModel.js │ └── userModel.js ├── index.js ├── package-lock.json └── package.json ├── frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── kavach_logo.png │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── Login.js │ ├── Register.js │ ├── components │ │ ├── Calender.js │ │ ├── Feedback.js │ │ ├── ForcastChart.js │ │ ├── LandingPage.js │ │ ├── NotFound.js │ │ ├── ProfilePage.js │ │ ├── RULChart.js │ │ ├── Reports.js │ │ ├── Sidebar.js │ │ └── UserDashboard.js │ ├── images │ │ ├── actual_vs_predicted.png │ │ ├── box_plot.png │ │ ├── correlation_heatmap.png │ │ ├── correlation_heatmap2.png │ │ ├── feature_weights_plot.png │ │ ├── jj.jpg │ │ ├── kavach_logo.png │ │ ├── namaste.png │ │ ├── profile.png │ │ ├── top5.png │ │ └── xgb_importance_plot.png │ ├── index.css │ ├── index.js │ └── register.css └── tailwind.config.js ├── merged.csv └── xgb.pkl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/app.py -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- 1 | DB_URL= 2 | -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/auth.js -------------------------------------------------------------------------------- /backend/db/dbConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/db/dbConnect.js -------------------------------------------------------------------------------- /backend/db/questionModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/db/questionModel.js -------------------------------------------------------------------------------- /backend/db/userModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/db/userModel.js -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/backend/package.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/kavach_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/public/kavach_logo.png -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/Login.js -------------------------------------------------------------------------------- /frontend/src/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/Register.js -------------------------------------------------------------------------------- /frontend/src/components/Calender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/Calender.js -------------------------------------------------------------------------------- /frontend/src/components/Feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/Feedback.js -------------------------------------------------------------------------------- /frontend/src/components/ForcastChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/ForcastChart.js -------------------------------------------------------------------------------- /frontend/src/components/LandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/LandingPage.js -------------------------------------------------------------------------------- /frontend/src/components/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/NotFound.js -------------------------------------------------------------------------------- /frontend/src/components/ProfilePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/ProfilePage.js -------------------------------------------------------------------------------- /frontend/src/components/RULChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/RULChart.js -------------------------------------------------------------------------------- /frontend/src/components/Reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/Reports.js -------------------------------------------------------------------------------- /frontend/src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/Sidebar.js -------------------------------------------------------------------------------- /frontend/src/components/UserDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/components/UserDashboard.js -------------------------------------------------------------------------------- /frontend/src/images/actual_vs_predicted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/actual_vs_predicted.png -------------------------------------------------------------------------------- /frontend/src/images/box_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/box_plot.png -------------------------------------------------------------------------------- /frontend/src/images/correlation_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/correlation_heatmap.png -------------------------------------------------------------------------------- /frontend/src/images/correlation_heatmap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/correlation_heatmap2.png -------------------------------------------------------------------------------- /frontend/src/images/feature_weights_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/feature_weights_plot.png -------------------------------------------------------------------------------- /frontend/src/images/jj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/jj.jpg -------------------------------------------------------------------------------- /frontend/src/images/kavach_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/kavach_logo.png -------------------------------------------------------------------------------- /frontend/src/images/namaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/namaste.png -------------------------------------------------------------------------------- /frontend/src/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/profile.png -------------------------------------------------------------------------------- /frontend/src/images/top5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/top5.png -------------------------------------------------------------------------------- /frontend/src/images/xgb_importance_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/images/xgb_importance_plot.png -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/src/register.css -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /merged.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/merged.csv -------------------------------------------------------------------------------- /xgb.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityapotdar23/Predictive-Maintenance/HEAD/xgb.pkl --------------------------------------------------------------------------------