Datasets:

ArXiv:
Tags:
License:
lewtun HF staff commited on
Commit
d8b41ae
1 Parent(s): 292ee94

Add README

Browse files
Files changed (1) hide show
  1. README.md +142 -0
README.md CHANGED
@@ -1,3 +1,145 @@
1
  ---
2
  license: cc-by-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
  ---
4
+ # Dataset Card for Top Quark Tagging
5
+
6
+ ## Table of Contents
7
+ - [Dataset Card for Top Quark Tagging](#dataset-card-for-top-quark-tagging)
8
+ - [Table of Contents](#table-of-contents)
9
+ - [Dataset Description](#dataset-description)
10
+ - [Dataset Summary](#dataset-summary)
11
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
12
+ - [Dataset Structure](#dataset-structure)
13
+ - [Data Instances](#data-instances)
14
+ - [Data Fields](#data-fields)
15
+ - [Data Splits](#data-splits)
16
+ - [Dataset Creation](#dataset-creation)
17
+ - [Curation Rationale](#curation-rationale)
18
+ - [Source Data](#source-data)
19
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
20
+ - [Social Impact of Dataset](#social-impact-of-dataset)
21
+ - [Other Known Limitations](#other-known-limitations)
22
+ - [Additional Information](#additional-information)
23
+ - [Dataset Curators](#dataset-curators)
24
+ - [Licensing Information](#licensing-information)
25
+ - [Citation Information](#citation-information)
26
+ - [Contributions](#contributions)
27
+
28
+ ## Dataset Description
29
+
30
+ - **Homepage:** https://zenodo.org/record/2603256
31
+ - **Paper:** https://arxiv.org/abs/1902.09914
32
+ - **Point of Contact:** [Gregor Kasieczka](gregor.kasieczka@uni-hamburg.de)
33
+
34
+ ### Dataset Summary
35
+
36
+ Top Quark Tagging is a dataset of Monte Carlo simulated events produced by proton-proton collisions at the Large Hadron Collider. The top signal and mixed quark-gluon background jets are produced with using Pythia8 with its default tune for a center-of-mass energy of 14 TeV and ignoring multiple interactions and pile-up. The leading 200 jet constituent four-momenta are stored, with zero-padding for jets with fewer than 200 constituents.
37
+
38
+ ### Supported Tasks and Leaderboards
39
+
40
+ - `tabular-classification`: The dataset can be used to train a model for tabular binary classification, which consists in predicting whether an event is produced from a top signal or quark-gluon background. Success on this task is typically measured by achieving a *high* [accuracy](https://huggingface.co/metrics/accuracy) and AUC score.
41
+
42
+ ## Dataset Structure
43
+
44
+ ### Data Instances
45
+
46
+ Each row in the datasets 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.
47
+
48
+ ```
49
+ {'E_0': 474.0711364746094,
50
+ 'PX_0': -250.34703063964844,
51
+ 'PY_0': -223.65196228027344,
52
+ 'PZ_0': -334.73809814453125,
53
+ 'E_1': 103.23623657226562,
54
+ 'PX_1': -48.8662223815918,
55
+ 'PY_1': -56.790775299072266,
56
+ 'PZ_1': -71.0254898071289,
57
+ ...
58
+ 'E_199': 0.0,
59
+ 'PX_199': 0.0,
60
+ 'PY_199': 0.0,
61
+ 'PZ_199': 0.0,
62
+ 'truthE': 0.0,
63
+ 'truthPX': 0.0,
64
+ 'truthPY': 0.0,
65
+ 'truthPZ': 0.0,
66
+ 'ttv': 0,
67
+ 'is_signal_new': 0}
68
+ ```
69
+
70
+ ### Data Fields
71
+
72
+ 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.
73
+
74
+ - `example_field`: description of `example_field`
75
+
76
+ Note that the descriptions can be initialized with the **Show Markdown Data Fields** output of the [Datasets Tagging app](https://huggingface.co/spaces/huggingface/datasets-tagging), you will then only need to refine the generated descriptions.
77
+
78
+ ### Data Splits
79
+
80
+ Describe and name the splits in the dataset if there are more than one.
81
+
82
+ Describe any criteria for splitting the data, if used. If there are differences between the splits (e.g. if the training annotations are machine-generated and the dev and test ones are created by humans, or if different numbers of annotators contributed to each example), describe them here.
83
+
84
+ Provide the sizes of each split. As appropriate, provide any descriptive statistics for the features, such as average length. For example:
85
+
86
+ | | train | validation | test |
87
+ |-------------------------|------:|-----------:|-----:|
88
+ | Input Sentences | | | |
89
+ | Average Sentence Length | | | |
90
+
91
+ ## Dataset Creation
92
+
93
+ ### Curation Rationale
94
+
95
+ What need motivated the creation of this dataset? What are some of the reasons underlying the major choices involved in putting it together?
96
+
97
+ ### Source Data
98
+
99
+ This section describes the source data (e.g. news text and headlines, social media posts, translated sentences,...)
100
+
101
+ ## Considerations for Using the Data
102
+
103
+ ### Social Impact of Dataset
104
+
105
+ Please discuss some of the ways you believe the use of this dataset will impact society.
106
+
107
+ The statement should include both positive outlooks, such as outlining how technologies developed through its use may improve people's lives, and discuss the accompanying risks. These risks may range from making important decisions more opaque to people who are affected by the technology, to reinforcing existing harmful biases (whose specifics should be discussed in the next section), among other considerations.
108
+
109
+ Also describe in this section if the proposed dataset contains a low-resource or under-represented language. If this is the case or if this task has any impact on underserved communities, please elaborate here.
110
+
111
+ ### Other Known Limitations
112
+
113
+ If studies of the datasets have outlined other limitations of the dataset, such as annotation artifacts, please outline and cite them here.
114
+
115
+ ## Additional Information
116
+
117
+ ### Dataset Curators
118
+
119
+ List the people involved in collecting the dataset and their affiliation(s). If funding information is known, include it here.
120
+
121
+ ### Licensing Information
122
+
123
+ Provide the license and link to the license webpage if available.
124
+
125
+ ### Citation Information
126
+
127
+ ```
128
+ @dataset{kasieczka_gregor_2019_2603256,
129
+ author = {Kasieczka, Gregor and
130
+ Plehn, Tilman and
131
+ Thompson, Jennifer and
132
+ Russel, Michael},
133
+ title = {Top Quark Tagging Reference Dataset},
134
+ month = mar,
135
+ year = 2019,
136
+ publisher = {Zenodo},
137
+ version = {v0 (2018\_03\_27)},
138
+ doi = {10.5281/zenodo.2603256},
139
+ url = {https://doi.org/10.5281/zenodo.2603256}
140
+ }
141
+ ```
142
+
143
+ ### Contributions
144
+
145
+ Thanks to [@lewtun](https://github.com/lewtun) for adding this dataset.