Hyperscale ES Lab
This demo follows the actual structure of the repo: environment check, data prep, baseline, reproduction, ablation, and artifact folders. It is less about running the full paper online and more about exposing the experiment workflow clearly.
What this demo focuses on
1. The actual notebook sequence defined in the repo.
2. The data and artifact layout used across the experiment workflow.
3. A clearer story for visitors who want to understand how the lab is structured.
Why not run the full paper reproduction in-browser?
Notebook stages
00_env_check.ipynb
Verify the Python environment and package setup before running experiments.
Notebook cells
import numpy as np
import pandas as pd
import matplotlib
print('Environment looks ready')
print('numpy:', np.__version__)
print('pandas:', pd.__version__)
print('matplotlib:', matplotlib.__version__)Preview output
Environment looks ready
numpy: 2.x.x
pandas: 2.x.x
matplotlib: 3.x.xLab storage and artifact map
data/raw
Original inputs and source material used before preprocessing.
data/processed
Prepared datasets and transformed experiment inputs.
reports
Metrics, notes, experiment summaries, and writeups.
figures
Plots and visual outputs exported from notebooks.
src
Shared helper code used by notebooks and experiment steps.