Skip to content

Latest commit

 

History

History
38 lines (37 loc) · 974 Bytes

FILE_STRUCTURE.md

File metadata and controls

38 lines (37 loc) · 974 Bytes

File Structure

PredictHub/
├── client/
│   ├── src/
│   │   ├── components/
│   │   ├── App.tsx
│   │   ├── index.html
│   ├── package.json
│   ├── vite.config.js
│   ├── README.md
├── server/
│   ├── app.py
│   ├── models.py
│   ├── routes.py
│   ├── requirements.txt
│   ├── utils/
│       ├── Auth/
│       ├── Chat/
│       ├── Contact/
│       ├── Feedback/
│       ├── Stock/
│       ├── User/
│       ├── Watchlist/
├── prediction/
│   ├── DLModels/
│   │   ├── app.py
│   │   ├── JupyterNotebook/
│   │       ├── LSTM/
│   │       ├── BiLSTM/
│   ├── MLModels/
│   │   ├── app.py
│   │   ├── JupyterNotebook/
│   │       ├── ARIMA/
│   │       ├── RANDOM_FOREST/
├── README.md