Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
webersni commited on
Commit
cf6db77
1 Parent(s): 655fc53

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +140 -2
README.md CHANGED
@@ -1,4 +1,21 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: text
@@ -22,6 +39,127 @@ dataset_info:
22
  download_size: 307811
23
  dataset_size: 494007
24
  ---
25
- # Dataset Card for "environmental_claims"
26
 
27
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license: cc-by-nc-sa-4.0
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - 1K<n<10K
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - text-classification
17
+ task_ids: []
18
+ pretty_name: EnvironmentalClaims
19
  dataset_info:
20
  features:
21
  - name: text
 
39
  download_size: 307811
40
  dataset_size: 494007
41
  ---
 
42
 
43
+ # Dataset Card for environmental_claims
44
+
45
+ ## Dataset Description
46
+
47
+ - **Homepage:** [climatebert.ai](https://climatebert.ai)
48
+ - **Repository:**
49
+ - **Paper:** [arxiv.org/abs/2209.00507](https://arxiv.org/abs/2209.00507)
50
+ - **Leaderboard:**
51
+ - **Point of Contact:** [Dominik Stammbach](mailto:[email protected])
52
+
53
+ ### Dataset Summary
54
+
55
+ We introduce an expert-annotated dataset for detecting real-world environmental claims made by listed companies.
56
+
57
+ ### Supported Tasks and Leaderboards
58
+
59
+ The dataset supports a binary classification task of whether a given sentence is an environmental claim or not.
60
+
61
+ ### Languages
62
+
63
+ The text in the dataset is in English.
64
+
65
+ ## Dataset Structure
66
+
67
+ ### Data Instances
68
+
69
+ ```
70
+ {
71
+ "text": "It will enable E.ON to acquire and leverage a comprehensive understanding of the transfor- mation of the energy system and the interplay between the individual submarkets in regional and local energy supply sys- tems.",
72
+ "label": 0
73
+ }
74
+ ```
75
+
76
+ ### Data Fields
77
+
78
+ - text: a sentence extracted from corporate annual reports, sustainability reports and earning calls transcripts
79
+ - label: the label (0 -> no environmental claim, 1 -> environmental claim)
80
+
81
+ ### Data Splits
82
+
83
+ The dataset is split into:
84
+ - train: 2,400
85
+ - validation: 300
86
+ - test: 300
87
+
88
+ ## Dataset Creation
89
+
90
+ ### Curation Rationale
91
+
92
+ [More Information Needed]
93
+
94
+ ### Source Data
95
+
96
+ #### Initial Data Collection and Normalization
97
+
98
+ Our dataset contains environmental claims by firms, often in the financial domain. We collect text from corporate annual reports, sustainability reports, and earning calls transcripts.
99
+
100
+ For more information regarding our sample selection, please refer to Appendix B of our paper, which is provided for [citation](#citation-information).
101
+
102
+ #### Who are the source language producers?
103
+
104
+ Mainly large listed companies.
105
+
106
+ ### Annotations
107
+
108
+ #### Annotation process
109
+
110
+ For more information on our annotation process and annotation guidelines, please refer to Appendix C of our paper, which is provided for [citation](#citation-information).
111
+
112
+ #### Who are the annotators?
113
+
114
+ The authors and students at University of Zurich with majors in finance and sustainable finance.
115
+
116
+ ### Personal and Sensitive Information
117
+
118
+ Since our text sources contain public information, no personal and sensitive information should be included.
119
+
120
+ ## Considerations for Using the Data
121
+
122
+ ### Social Impact of Dataset
123
+
124
+ [More Information Needed]
125
+
126
+ ### Discussion of Biases
127
+
128
+ [More Information Needed]
129
+
130
+ ### Other Known Limitations
131
+
132
+ [More Information Needed]
133
+
134
+ ## Additional Information
135
+
136
+ ### Dataset Curators
137
+
138
+ - Dominik Stammbach
139
+ - Nicolas Webersinke
140
+ - Julia Anna Bingler
141
+ - Mathias Kraus
142
+ - Markus Leippold
143
+
144
+ ### Licensing Information
145
+
146
+ This dataset is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license (cc-by-nc-sa-4.0). To view a copy of this license, visit [creativecommons.org/licenses/by-nc-sa/4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/).
147
+
148
+ If you are interested in commercial use of the dataset, please contact [[email protected]](mailto:[email protected]).
149
+
150
+ ### Citation Information
151
+
152
+ ```bibtex
153
+ @misc{stammbach2022environmentalclaims,
154
+ title = {A Dataset for Detecting Real-World Environmental Claims},
155
+ author = {Stammbach, Dominik and Webersinke, Nicolas and Bingler, Julia Anna and Kraus, Mathias and Leippold, Markus},
156
+ year = {2022},
157
+ doi = {10.48550/ARXIV.2209.00507},
158
+ url = {https://arxiv.org/abs/2209.00507},
159
+ publisher = {arXiv},
160
+ }
161
+ ```
162
+
163
+ ### Contributions
164
+
165
+ Thanks to [@webersni](https://github.com/webersni) for adding this dataset.