Instructions to use Sharmistha-catalyst/CERNSight with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use Sharmistha-catalyst/CERNSight with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://Sharmistha-catalyst/CERNSight") - Notebooks
- Google Colab
- Kaggle
CERNsight β Higgs Boson Event Classifier
CERNsight is a heterogeneous ensemble classifier that distinguishes Higgs boson signal events from background noise in particle collision data. It combines gradient-boosted trees (XGBoost) with a deep neural network, blending their outputs via soft voting (probability averaging) rather than a gated mixture-of-experts routing scheme.
The model is trained on a 500,000-row stratified sample of the HIGGS benchmark dataset (11M total collision events, 28 kinematic features per event), originally introduced by Baldi, Sadowski & Whiteson (2014) to test whether deep learning could automatically discover the high-level derived physics features that experts had previously hand-engineered.
Predictions are paired with SHAP-based explainability, so each classification can be traced back to the specific detector measurements that drove it β important for a domain where physicists need to audit, not just trust, a model's output.
This repository holds the trained baseline models from the two-week club submission track. A longer-term scaled version β stacking meta-learner, cross-validated training, MC Dropout uncertainty estimates, and deeper physics-alignment analysis via SHAP β is in progress, targeting a workshop/journal submission.
Model Description
- Architecture: XGBoost (gradient boosted trees) + Dense NN (512β256β128β1), combined via probability averaging ...
- Downloads last month
- -
Dataset used to train Sharmistha-catalyst/CERNSight
Evaluation results
- Deep NN Test AUC-ROC on HIGGS (500k sample)self-reported0.838
- XGBoost Test AUC-ROC on HIGGS (500k sample)self-reported0.818