Containerized dataset generation tool for RAYX.
podman build -t rayx-dataset:latest .mkdir -p outputspodman run --rm -it \
--name rayx-dataset \
--replace \
-v ./outputs:/App/outputs:Z \
rayx-dataset:latest \
python3 generate.py seed=42Generated datasets and logs will be written to ./outputs.
podman run --rm -it \
--name rayx-dataset \
--replace \
-v ./outputs:/App/outputs:Z \
-v ./beamline.rml:/App/conf/beamline.rml:Z \
rayx-dataset:latest \
python3 generate.py seed=42Make sure beamline.rml exists before running the command.
Use the legacy RAY-UI backend for dataset generation:
selected_backend=rayuiIncrease 1D histogram resolution:
transform_options.xyhist.n_bins=100Set custom x-axis limits:
transform_options.xyhist.x_lims="(-5,5)"