Datasets:

ArXiv:
Tags:
License:
lewtun HF staff commited on
Commit
f0be82f
1 Parent(s): 0716dfc

Update README

Browse files
Files changed (1) hide show
  1. README.md +9 -9
README.md CHANGED
@@ -25,7 +25,7 @@ license: cc-by-4.0
25
 
26
  ### Dataset Summary
27
 
28
- TopLandscape is a dataset of Monte Carlo simulated events produced by proton-proton collisions at the Large Hadron Collider. The top-quark signal and mixed quark-gluon background jets are produced with Pythia8 with its default tune for a center-of-mass energy of 14 TeV. Multiple interactions and pile-up are ignored. The leading 200 jet constituent four-momenta \\(E, p_x, p_y, p_z \\) are stored, with zero-padding applied to jets with fewer than 200 constituents.
29
 
30
  ### Supported Tasks and Leaderboards
31
 
@@ -35,7 +35,7 @@ TopLandscape is a dataset of Monte Carlo simulated events produced by proton-pro
35
 
36
  ### Data Instances
37
 
38
- Each instance in the dataset consists of the four-momenta of the leading 200 jet constituents, sorted by $p_T$. For jets with fewer than 200 constituents, zero-padding is applied. The four-momenta of the top-quark are also provided, along with a label in the `is_signal_new` column to indicate whether the event stems from a top-quark (1) or QCD background (0). An example instance looks as follows:
39
 
40
  ```
41
  {'E_0': 474.0711364746094,
@@ -59,14 +59,14 @@ Each instance in the dataset consists of the four-momenta of the leading 200 jet
59
 
60
  List and describe the fields present in the dataset. Mention their data type, and whether they are used as input or output in any of the tasks the dataset currently supports. If the data has span indices, describe their attributes, such as whether they are at the character level or word level, whether they are contiguous or not, etc. If the datasets contains example IDs, state whether they have an inherent meaning, such as a mapping to other datasets or pointing to relationships between data points.
61
 
62
- - `E_i`: the energy of jet constituent $i$.
63
- - `PX_i`: the $x$ component of the jet constituent's momentum
64
- - `PY_i`: the $y$ component of the jet constituent's momentum
65
- - `PZ_i`: the $z$ component of the jet constituent's momentum
66
  - `truthE`: the energy of the top-quark
67
- - `truthPX`: the $x$ component of the top quark's momentum
68
- - `truthPY`: the $y$ component of the top quark's momentum
69
- - `truthPZ`: the $z$ component of the top quark's momentum
70
  - `ttv`: a flag that indicates which split (train, validation, or test) that a jet belongs to. Redundant since each split is provided as a separate dataset
71
  - `is_signal_new`: the label for each jet. A 1 indicates a top-quark, while a 0 indicates QCD background.
72
 
 
25
 
26
  ### Dataset Summary
27
 
28
+ TopLandscape is a dataset of Monte Carlo simulated events produced by proton-proton collisions at the Large Hadron Collider. The top-quark signal and mixed quark-gluon background jets are produced with Pythia8 with its default tune for a center-of-mass energy of 14 TeV. Multiple interactions and pile-up are ignored. The leading 200 jet constituent four-momenta \\( (E, p_x, p_y, p_z) \\) are stored, with zero-padding applied to jets with fewer than 200 constituents.
29
 
30
  ### Supported Tasks and Leaderboards
31
 
 
35
 
36
  ### Data Instances
37
 
38
+ Each instance in the dataset consists of the four-momenta of the leading 200 jet constituents, sorted by \\(p_T\\). For jets with fewer than 200 constituents, zero-padding is applied. The four-momenta of the top-quark are also provided, along with a label in the `is_signal_new` column to indicate whether the event stems from a top-quark (1) or QCD background (0). An example instance looks as follows:
39
 
40
  ```
41
  {'E_0': 474.0711364746094,
 
59
 
60
  List and describe the fields present in the dataset. Mention their data type, and whether they are used as input or output in any of the tasks the dataset currently supports. If the data has span indices, describe their attributes, such as whether they are at the character level or word level, whether they are contiguous or not, etc. If the datasets contains example IDs, state whether they have an inherent meaning, such as a mapping to other datasets or pointing to relationships between data points.
61
 
62
+ - `E_i`: the energy of jet constituent \\(i\\).
63
+ - `PX_i`: the \\(x\\) component of the jet constituent's momentum
64
+ - `PY_i`: the \\(y\\) component of the jet constituent's momentum
65
+ - `PZ_i`: the \\(z\\) component of the jet constituent's momentum
66
  - `truthE`: the energy of the top-quark
67
+ - `truthPX`: the \\(x\\) component of the top quark's momentum
68
+ - `truthPY`: the \\(y\\) component of the top quark's momentum
69
+ - `truthPZ`: the \\(z\\) component of the top quark's momentum
70
  - `ttv`: a flag that indicates which split (train, validation, or test) that a jet belongs to. Redundant since each split is provided as a separate dataset
71
  - `is_signal_new`: the label for each jet. A 1 indicates a top-quark, while a 0 indicates QCD background.
72