A super-hot state of matter where quarks and gluons move freely.
Helps us understand conditions microseconds after the Big Bang.
Pb–Pb click to learn more
Lead–Lead Collisions
High-energy lead nuclei collisions that create QGP.
Lets us study how jets lose energy in extreme matter.
Jet click to learn more
Jets & Jet Quenching
Sprays of particles created during collisions.
Energy loss → reveals QGP properties.
αₛ click to learn more
Strong Coupling Constant (αₛ)
Measures how strongly quarks bind together.
Different αₛ values help model jet energy loss.
Q₀ click to learn more
Virtuality Scale (Q₀)
Determines how quantum or classical jet evolution is.
Controls which processes dominate in QGP.
MATTER click to learn more
MATTER Model
Describes energy loss via radiation + elastic collisions.
Represents early jet evolution.
MATTER–LBT click to learn more
MATTER–LBT Model
Hybrid model combining radiation + medium scattering.
Simulates realistic QGP interactions.
"""
# ---------------------------------------------------------
# FINAL GRADIO APP WITH TABS
# ---------------------------------------------------------
with gr.Blocks() as demo:
gr.Markdown("
MLBT vs MMAT Jet Classifier
")
with gr.Tabs():
with gr.Tab("🔬 Classifier"):
input_component = gr.Image(type="numpy", label="Upload a jet image")
output_component = gr.Label(num_top_classes=2, label="Predicted probabilities")
input_component.change(predict, inputs=input_component, outputs=output_component)
with gr.Tab("📘 About"):
gr.HTML(about_html)
if __name__ == "__main__":
demo.launch()