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
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ This version blends the strengths of **ensemble learning** with extensive prepro
28
28
-[Data Sources](#data-sources)
29
29
-[Training Workflow](#training-workflow)
30
30
-[Evaluation](#evaluation)
31
+
-[Note](#note)
31
32
-[Acknowledgements](#acknowledgements)
32
33
-[Appreciation](#appreciation)
33
34
@@ -169,7 +170,7 @@ EXOPLANET_CLASSIFIER/
169
170
├── app.py
170
171
├── fit.py
171
172
├── LICENSE
172
-
├── README.md
173
+
├── README.md # You're reading it now
173
174
├── requirements.txt
174
175
└── research.ipynb
175
176
```
@@ -248,7 +249,6 @@ Targets are mapped as follows:
248
249
249
250
### Evaluation
250
251
251
-
The model was evaluated on a held-out test set (1/3 of the data, stratified by class).
252
252
Here is the classification report:
253
253
254
254
| Class | Precision | Recall | F1-score | Support |
@@ -266,6 +266,18 @@ Here is the classification report:
266
266
This demonstrates that the upgraded stacking classifier maintains strong performance on confirmed and false positive classes, with room for improvement on candidate predictions.
267
267
The model balances **accuracy, generalization, and class fairness**, making it reliable for preliminary exoplanet classification tasks.
268
268
269
+
---
270
+
271
+
### Note
272
+
Despite extensive experimentation, this represents the current performance ceiling achievable with the available data.
273
+
Numerous optimizations were explored — including hyperparameter tuning, feature scaling, class rebalancing, and ensemble variations — yet further improvements beyond ~0.75 accuracy were not observed.
274
+
This indicates a **data limitation rather than a model limitation**, as the features may not carry additional separable information for higher classification accuracy.
275
+
276
+
The research process behind this version involved significant model testing and fine-tuning efforts (see `research.ipynb`).
277
+
278
+
**Suggestions and improvements are highly welcome** — contributions or insights from the community could help push the model beyond its present boundary.
0 commit comments