Skip to content

Commit 803df21

Browse files
authored
Update README.md
1 parent 421cdee commit 803df21

File tree

1 file changed

+57
-53
lines changed

1 file changed

+57
-53
lines changed

README.md

+57-53
Original file line numberDiff line numberDiff line change
@@ -19,60 +19,64 @@ The GPU Optimizer for ML Models is a comprehensive platform designed to improve
1919
- **Real-time Monitoring**: Monitor GPU utilization and performance in real-time.
2020
- **Secure API**: Securely manage models and GPU resources via a robust API.
2121

22-
## Project Structure
22+
# Project Structure
23+
24+
The GPU Optimizer for ML Models project is organized into several directories and files, each serving a specific purpose. Below is a detailed breakdown of the project structure:
25+
26+
```plaintext
2327
MLGpuOptimizer/
24-
|-- backend_api/
25-
| |-- config/
26-
| |-- config.py
27-
| |-- controllers/
28-
| |-- model_controller.py
29-
| |-- gpu_controller.py
30-
| |-- models/
31-
| |-- model.py
32-
| |-- routes/
33-
| |-- api_routes.py
34-
| |-- services/
35-
| |-- gpu_service.py
36-
| |-- model_service.py
37-
| |-- utils/
38-
| |-- optimization.py
39-
| |-- app.py
40-
| |-- Dockerfile
41-
|-- data_processing/
42-
| |-- spark_jobs/
43-
| |-- data_transformation.py
44-
| |-- data_aggregation.py
45-
| |-- data_analysis.py
46-
| |-- hadoop_jobs/
47-
| |-- hadoop_config.py
48-
| |-- utils/
49-
| |-- spark_utils.py
50-
| |-- Dockerfile
51-
|-- web_interface/
52-
| |-- public/
53-
| |-- index.html
54-
| |-- src/
55-
| |-- components/
56-
| |-- Header.js
57-
| |-- Footer.js
58-
| |-- ModelUpload.js
59-
| |-- ModelMonitor.js
60-
| |-- GpuStats.js
61-
| |-- pages/
62-
| |-- HomePage.js
63-
| |-- UploadPage.js
64-
| |-- MonitorPage.js
65-
| |-- services/
66-
| |-- api.js
67-
| |-- App.js
68-
| |-- index.js
69-
| |-- App.css
70-
| |-- Dockerfile
71-
|-- db_init/
72-
| |-- init.sql
73-
|-- scripts/
74-
| |-- deploy.sh
75-
|-- README.md
28+
├── backend_api/
29+
│ ├── config/
30+
│ │ └── config.py
31+
│ ├── controllers/
32+
│ │ ├── model_controller.py
33+
│ │ └── gpu_controller.py
34+
│ ├── models/
35+
│ │ └── model.py
36+
│ ├── routes/
37+
│ │ └── api_routes.py
38+
│ ├── services/
39+
│ │ ├── gpu_service.py
40+
│ │ └── model_service.py
41+
│ ├── utils/
42+
│ │ └── optimization.py
43+
│ ├── app.py
44+
│ └── Dockerfile
45+
├── data_processing/
46+
│ ├── spark_jobs/
47+
│ │ ├── data_transformation.py
48+
│ │ ├── data_aggregation.py
49+
│ │ └── data_analysis.py
50+
│ ├── hadoop_jobs/
51+
│ │ └── hadoop_config.py
52+
│ ├── utils/
53+
│ │ └── spark_utils.py
54+
│ └── Dockerfile
55+
├── web_interface/
56+
│ ├── public/
57+
│ │ └── index.html
58+
│ ├── src/
59+
│ │ ├── components/
60+
│ │ │ ├── Header.js
61+
│ │ │ ├── Footer.js
62+
│ │ │ ├── ModelUpload.js
63+
│ │ │ ├── ModelMonitor.js
64+
│ │ │ └── GpuStats.js
65+
│ │ ├── pages/
66+
│ │ │ ├── HomePage.js
67+
│ │ │ ├── UploadPage.js
68+
│ │ │ └── MonitorPage.js
69+
│ │ ├── services/
70+
│ │ │ └── api.js
71+
│ │ ├── App.js
72+
│ │ ├── index.js
73+
│ │ └── App.css
74+
│ └── Dockerfile
75+
├── db_init/
76+
│ └── init.sql
77+
├── scripts/
78+
│ └── deploy.sh
79+
├── README.md
7680
7781
7882
## Installation

0 commit comments

Comments
 (0)