Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,38 +1,5 @@
|
|
| 1 |
-
---
|
| 2 |
-
title: EV Performance Prediction
|
| 3 |
-
emoji: 🔋
|
| 4 |
-
colorFrom: blue
|
| 5 |
-
colorTo: green
|
| 6 |
-
sdk: gradio
|
| 7 |
-
sdk_version: "4.44.1"
|
| 8 |
-
app_file: app.py
|
| 9 |
-
pinned: false
|
| 10 |
-
---
|
| 11 |
|
| 12 |
-
# 🔋 Electric Vehicle Performance Prediction
|
| 13 |
|
| 14 |
-
##
|
| 15 |
-
|
| 16 |
-
using a machine learning regression model.
|
| 17 |
-
|
| 18 |
-
## 🧠 Model Information
|
| 19 |
-
- Task: Regression
|
| 20 |
-
- Target variable: Electric Range
|
| 21 |
-
- Algorithm: XGBoost Regressor
|
| 22 |
-
- Dataset size: ~73,000 samples
|
| 23 |
-
- Number of features: 6
|
| 24 |
-
|
| 25 |
-
## 📂 Input Features
|
| 26 |
-
1. Model Year
|
| 27 |
-
2. Make (encoded)
|
| 28 |
-
3. Model (encoded)
|
| 29 |
-
4. Electric Vehicle Type
|
| 30 |
-
5. CAFV Eligibility
|
| 31 |
-
6. Electric Utility
|
| 32 |
-
|
| 33 |
-
## ▶️ How it works
|
| 34 |
-
The Gradio web interface allows users to input vehicle specifications
|
| 35 |
-
and returns the predicted electric range in kilometers.
|
| 36 |
-
|
| 37 |
-
## 🚀 Deployment
|
| 38 |
-
This demo is deployed using **Hugging Face Spaces + Gradio**.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
+
# 🔋 Electric Vehicle Performance Prediction Model
|
| 3 |
|
| 4 |
+
## 👨🎓 Author
|
| 5 |
+
Student Research Project – Academic Year 2024–2025
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app.py
CHANGED
|
@@ -22,7 +22,7 @@ with gr.Blocks(title="EV Performance Prediction") as demo:
|
|
| 22 |
gr.Markdown(
|
| 23 |
"""
|
| 24 |
# 🔋 Electric Vehicle Performance Prediction
|
| 25 |
-
**Dự báo hiệu suất kỹ thuật xe điện (Electric Range)**
|
| 26 |
---
|
| 27 |
"""
|
| 28 |
)
|
|
|
|
| 22 |
gr.Markdown(
|
| 23 |
"""
|
| 24 |
# 🔋 Electric Vehicle Performance Prediction
|
| 25 |
+
**Dự báo hiệu suất kỹ thuật xe điện (Electric Range)**
|
| 26 |
---
|
| 27 |
"""
|
| 28 |
)
|