rexarski commited on
Commit
6c9bc01
1 Parent(s): 3148527

[UPDATE] update example texts

Browse files
Files changed (1) hide show
  1. app.py +22 -22
app.py CHANGED
@@ -72,44 +72,44 @@ def tcfd_classify(text):
72
 
73
  data1 = {
74
  "example": [
75
- "Example 1 (Sea ice has diminished much faster than scientists and climate models anticipated.)",
76
- "Example 2 (Climate Models Have Overestimated Global Warming)",
77
- "Example 3 (Climate skeptics argue temperature records have been adjusted in recent years to ...)",
78
  "Example 4 (Humans are too insignificant to affect global climate.)",
79
  ],
80
  "claim": [
81
- "Sea ice has diminished much faster than scientists and climate models anticipated.",
82
- "Climate Models Have Overestimated Global Warming",
83
- "Climate skeptics argue temperature records have been adjusted in recent years to make the past appear cooler and the present warmer, although the Carbon Brief showed that NOAA has actually made the past warmer, evening out the difference.",
84
  "Humans are too insignificant to affect global climate.",
85
  ],
86
  "evidence": [
87
- "Past models have underestimated the rate of Arctic shrinkage and underestimated the rate of precipitation increase.",
88
- """The 2017 United States-published National Climate Assessment notes that "climate models may still be underestimating or missing relevant feedback processes".""",
89
- """Reconstructions have consistently shown that the rise in the instrumental temperature record of the past 150 years is not matched in earlier centuries, and the name "hockey stick graph" was coined for figures showing a long-term decline followed by an abrupt rise in temperatures.""",
90
  "Human impact on the environment or anthropogenic impact on the environment includes changes to biophysical environments and ecosystems, biodiversity, and natural resources caused directly or indirectly by humans, including global warming, environmental degradation (such as ocean acidification), mass extinction and biodiversity loss, ecological crisis, and ecological collapse.",
91
  ],
92
- "label": ["SUPPORTS", "REFUTES", "NOT_ENOUGH_INFO", "REFUTES"],
93
  }
94
 
95
  data2 = {
96
  "example": [
97
- "Example 1 (As a global provider of transport and logistics services ...)",
98
- "Example 2 (There are no sentences in the provided excerpts that disclose Scope 1 and Scope 2)",
99
- "Example 3 (Our strategy needs to be resilient under a range of climate-related scenarios.)",
100
- "Example 4 (AXA created a Group-level Responsible Investment Committee ...)",
101
  ],
102
  "text": [
103
- "As a global provider of transport and logistics services, we are often called on for expert input and industry insights by government representatives.",
104
- "There are no sentences in the provided excerpts that disclose Scope 1 and Scope 2, and, if appropriate Scope 3 GHG emissions. The provided excerpts focus on other metrics and targets related to social impact investing, assets under management, and carbon footprint calculations.",
105
- """Our strategy needs to be resilient under a range of climate-related scenarios. This year we have undertaken climate-related scenario testing of a select group of customers in the thermal coal supply chain. We assessed these customers using two of the International Energy Agency’s scenarios; the ‘New Policies Scenario’ and the ‘450 Scenario’. Our reporting reflects the Financial Stability Board’s (FSB) Task Force on Climate-Related Disclosures (TCFD) recommendations. Using the FSB TCFD’s disclosure framework, we have begun discussions with some of our customers in emissions-intensive industries. The ESG Committee is responsible for reviewing and approving our climate change-related objectives, including goals and targets. The Board Risk Committee has formal responsibility for the overview of ANZ’s management of new and emerging risks, including climate change-related risks.""",
106
- "AXA created a Group-level Responsible Investment Committee (RIC), chaired by the Group Chief Investment Officer, and including representatives from AXA Asset Management entities, representatives of Corporate Responsibility (CR), Risk Management and Group Communication.",
107
  ],
108
  "label": [
109
- "Risk Management a)",
110
- "Metrics and Targets b)",
111
- "Strategy c)",
112
- "Governance b)",
113
  ],
114
  }
115
 
 
72
 
73
  data1 = {
74
  "example": [
75
+ "Example 1 (there is no relationship between temperature and carbon dioxide emissions by ­humans[...])",
76
+ "Example 2 (The late 1970s marked the end of a 30-year cooling trend.)",
77
+ "Example 3 (Even during a period of long term warming, there are short periods of cooling due to climate variability.)",
78
  "Example 4 (Humans are too insignificant to affect global climate.)",
79
  ],
80
  "claim": [
81
+ "there is no relationship between temperature and carbon dioxide emissions by ­humans[...]",
82
+ "The late 1970s marked the end of a 30-year cooling trend.",
83
+ "Even during a period of long term warming, there are short periods of cooling due to climate variability.",
84
  "Humans are too insignificant to affect global climate.",
85
  ],
86
  "evidence": [
87
+ "Human activities are now causing atmospheric concentrations of greenhouse gases—including carbon dioxide, methane, tropospheric ozone, and nitrous oxide—to rise well above pre-industrial levels ... Increases in greenhouse gases are causing temperatures to rise ...",
88
+ "During the last 20-30 years, world temperature has fallen, irregularly at first but more sharply over the last decade..",
89
+ "El Niño events cause short-term (approximately 1 year in length) spikes in global average surface temperature while La Niña events cause short term cooling.",
90
  "Human impact on the environment or anthropogenic impact on the environment includes changes to biophysical environments and ecosystems, biodiversity, and natural resources caused directly or indirectly by humans, including global warming, environmental degradation (such as ocean acidification), mass extinction and biodiversity loss, ecological crisis, and ecological collapse.",
91
  ],
92
+ "label": ["REFUTES", "NOT_ENOUGH_INFO", "SUPPORTS", "REFUTES"],
93
  }
94
 
95
  data2 = {
96
  "example": [
97
+ "Example 1 (Should our products fail to meet energy-efficiency standards and regulations, we will risk losing sales opportunities.)",
98
+ "Example 2 (There are no sentences in the provided excerpts that describe the targets the company uses to manage climate-related risks or opportunities.)",
99
+ "Example 3 (Describe how processes for identifying, assessing, and managing climate-related risks are integrated into the organization’s overall risk management.)",
100
+ "Example 4 (Reporting on such risks and opportunities is provided to.)",
101
  ],
102
  "text": [
103
+ "Should our products fail to meet energy-efficiency standards and regulations, we will risk losing sales opportunities.",
104
+ "There are no sentences in the provided excerpts that describe the targets the company uses to manage climate-related risks or opportunities.",
105
+ "Describe how processes for identifying, assessing, and managing climate-related risks are integrated into the organization’s overall risk management.",
106
+ "Reporting on such risks and opportunities is provided to.",
107
  ],
108
  "label": [
109
+ "Strategy a)",
110
+ "Metrics and Targets c)",
111
+ "Risk Management c)",
112
+ "Governance a)",
113
  ],
114
  }
115