You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,11 +63,26 @@ To see the architecture of the Local App UI, click the arrow below.
63
63
<imgalt="Architecture of the Web UI"src="assets/architecture.png"height="400">
64
64
</details>
65
65
66
+
### Experimental Ensemble Models 🧪
67
+
To improve accuracy and prediction capabilities, I have experimented with two ensemble models. Ensemble models combine predictions from multiple models to give a final verdict, which often results in better prediction accuracy. These ensemble models are still in the experimental phase and can be found in the [ensemble](web_ui/main_ensemble.py).
68
+
69
+
1. Car Type Ensemble Model (weighted average)
70
+
- Description: Trained two models on the same objective. Each with its on strengths and weaknesses. The results get weighted (correct weights through intensive testing). The models also differ in model architecture.
71
+
- Achievements:
72
+
- More balanced predictions
73
+
- Better prediction accuracy
74
+
2. Car Type hierarchy with car series (specific car type) (weighted average)
75
+
- Description: Created a hierarchy of models. The first models predicts the car type. The second model predicts the car series. After this the results get aligned with the car type model.
76
+
- Achievements:
77
+
- much less outlier predictions
78
+
- better prediction accuracy
79
+
80
+
They can be found at [PorscheInsight-Ensemble](https://classify.autos/classify-ensemble).
81
+
66
82
### ToDos
67
83
68
84
-[ ] Experiment with EfficientNet-Lite4
69
85
-[ ] Retrain all models with better dataset
70
-
-[ ] Build an ensemble model with car_type and car_series
71
86
-[ ] Switch to Google Cloud function/use S3 bucket/compress image
72
87
-[ ] Improve pre_filter model/Use Grounded SAM
73
88
-[ ] Add Taycans to images/models
@@ -99,6 +114,7 @@ To see the architecture of the Local App UI, click the arrow below.
99
114
-[x] Try autokeras
100
115
-[x] Improve model predictions overall
101
116
-[x] Evaluate feature engineering/ More data augmentation
117
+
-[x] Build an ensemble model with car_type and car_series
0 commit comments