dcisek93 commited on
Commit
5bf6aa6
1 Parent(s): fc6eac7

Update Dataset Card

Browse files

Added additional detail to our dataset card including language information, source data, methodology information, and other important information.

Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -27,4 +27,38 @@ size_categories:
27
  ---
28
  # Dataset Card for "TCFD_disclosure"
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
27
  ---
28
  # Dataset Card for "TCFD_disclosure"
29
 
30
+ ### Dataset Summary
31
+
32
+ This dataset was created to aid our team in developing a model to address two climate-related tasks: Fact Checking, and TCFD Classification, both of which are discussed below.
33
+ These two tasks are believed to be solveable with a BERT Language model, as identified by the [ClimateBERT](https://climatebert.ai/about) team. However, conclusive benchmarks or model weights for these
34
+ tasks were never released, leading to our team developing our own approach to these problems.
35
+
36
+ ### Data Fields
37
+
38
+ Our dataset contains 540 records, each of which is composed of several attributes:
39
+
40
+ - `question`: a `string` feature, provides additional detail about the particular TCFD category a particular document is labeled as.
41
+ - `text`: a `string` feature, containes the raw text of the sentence from the document that best characterizes a particular document.
42
+ - `label`: a `string` feature, identifies which of the 11 TCFD categories this document is labeled as.
43
+
44
+
45
+ ### Source Data
46
+
47
+ The reports used as the basis of the dataset were drawn from the Task Force on Climate-Related Financial Disclosures (TCFD) list of [Example Disclosures](https://www.fsb-tcfd.org/example-disclosures/).
48
+ These documents were provided by TCFD to highlight climate-related financial disclosures that align with one or more of the TCFD’s 11 recommended categories. With this in mind,
49
+ we can think of this list as exemplars for disclosures that display clear alignment and focus throughout the document.
50
+
51
+ ### Methodology
52
+
53
+ This dataset was curated by our team through a custom processing pipeline, to ensure the creation of a dataset in a way that was reproducible, explainable, and correct. A collection of
54
+ financial disclosures was highlighted by the TCFD, as discussed above. These reports served as the foundation of our dataset, giving our team a curated selection of data upon which to build our dataset.
55
+ These reports were scraped from the TCFD website via [Selenium](https://www.selenium.dev/), a tool designed to automate the collection of publicly available data from websites. With it we were able to
56
+ save the example disclosures as PDF files for processing. The collected documents already contained a label, provided by the TCFD in regards to its 11 identified categories for disclosures (discussed on page 112 of the [following report](https://assets.bbhub.io/company/sites/60/2022/10/2022-TCFD-Status-Report.pdf)).
57
+ With these labels in mind, we used a custom Python tool called [`ChitChat`](https://github.com/rexarski/chitchat) to return key sentences from each of the example disclosures. For the purposes of this study we returned five sentences from each report, giving us a total of 540 data points.
58
+ Each of the five created sentences shares the original label of the root document they come from. More information about our processing pipeline and further analysis can be found on our project page, or by contacting any of the authors of this project.
59
+
60
+ ### Languages
61
+
62
+ The text contained in the dataset is entirely in English, as found in the real-world financial disclosures identified by the TCFD. The associated BCP-47 code is [`en`](https://www.techonthenet.com/js/language_tags.php), to ensure clear labeling of language usage for downstream tasks and other future applications.
63
+
64
  [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)