Datasets:
File size: 800 Bytes
8cfaed2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # The loading pipeline that ships with the record.
#
# Three stages run in order and the last one caches what it wrote, so a rerun over the
# same cache directory costs nothing:
#
# reading the published parquet shards -> the padded (jets, constituents,
# features) array the study's own pipeline works on
# physics keep the leading constituents by pT, fit the scale-only normalisation
# on the training split, apply it
# datamodule drive both for a caller who wants tensors and nothing else
#
# The stages are configured by the hydra tree under configs/, which names them by their
# _target_. datamodule.JetData is the only entry point a consumer needs.
#
# Nothing is imported here, so that reading and physics can be used without torch
# installed.
|