LeBabyOx/EEGParquet
Viewer β’ Updated β’ 3.54M β’ 1.17k
How to use LeBabyOx/EEGDetectionMLBaseline with Scikit-learn:
from huggingface_hub import hf_hub_download
import joblib
model = joblib.load(
hf_hub_download("LeBabyOx/EEGDetectionMLBaseline", "sklearn_model.joblib")
)
# only load pickle files from sources you trust
# read more about it here https://skops.readthedocs.io/en/stable/persistence.htmlimport joblib
model = joblib.load("models/logistic_regression.joblib")
preds = model.predict(X)
Models struggle with extreme imbalance (~1600:1) Poor generalization across subjects (LOSO results) Classical ML is insufficient for robust seizure detection in this setting
If you use this model, please cite:
@dataset{eegparquet_benchmark_2026,
title={EEGParquet-Benchmark: Windowed and Feature-Enriched EEG Dataset for Seizure Detection},
author={Daffa Tarigan},
year={2026},
publisher={Hugging Face}
}
This repository is intended for:
Benchmarking classical ML under imbalance Demonstrating limitations of accuracy-based evaluation Supporting research in biomedical signal classification
/models
βββ logistic_regression.joblib
βββ random_forest.joblib
βββ svm_rbf_cuml_gpu.joblib
βββ xgboost_gpu_optuna.joblib