yiyanghkust
commited on
Commit
•
af56509
1
Parent(s):
50e6a4a
Update README.md
Browse files
README.md
CHANGED
@@ -12,6 +12,7 @@ ESG analysis can help investors determine a business' long-term sustainability a
|
|
12 |
|
13 |
**finbert-esg-9-categories** classifies a text into nine fine-grained ESG topics: *Climate Change, Natural Capital, Pollution & Waste, Human Capital, Product Liability, Community Relations, Corporate Governance, Business Ethics & Values, and Non-ESG*. This model complements [**finbert-esg**](https://huggingface.co/yiyanghkust/finbert-esg) which classifies a text into four coarse-grained ESG themes (*E, S, G or None*).
|
14 |
|
|
|
15 |
|
16 |
**Input**: A text.
|
17 |
|
@@ -30,4 +31,9 @@ nlp = pipeline("text-classification", model=finbert, tokenizer=tokenizer)
|
|
30 |
results = nlp('For 2002, our total net emissions were approximately 60 million metric tons of CO2 equivalents for all businesses
|
31 |
and operations we have financial interests in, based on its equity share in those businesses and operations.')
|
32 |
print(results) # [{'label': 'Climate Change', 'score': 0.9955655932426453}]
|
33 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
**finbert-esg-9-categories** classifies a text into nine fine-grained ESG topics: *Climate Change, Natural Capital, Pollution & Waste, Human Capital, Product Liability, Community Relations, Corporate Governance, Business Ethics & Values, and Non-ESG*. This model complements [**finbert-esg**](https://huggingface.co/yiyanghkust/finbert-esg) which classifies a text into four coarse-grained ESG themes (*E, S, G or None*).
|
14 |
|
15 |
+
Detailed description of the nine fine-grained ESG topic definition, some examples for each topic, training sample, and the model’s performance can be found [**here**](https://www.allenhuang.org/uploads/2/6/5/5/26555246/esg_9-class_descriptions.pdf).
|
16 |
|
17 |
**Input**: A text.
|
18 |
|
|
|
31 |
results = nlp('For 2002, our total net emissions were approximately 60 million metric tons of CO2 equivalents for all businesses
|
32 |
and operations we have financial interests in, based on its equity share in those businesses and operations.')
|
33 |
print(results) # [{'label': 'Climate Change', 'score': 0.9955655932426453}]
|
34 |
+
```
|
35 |
+
|
36 |
+
|
37 |
+
If you use the model in your academic work, please cite the following paper:
|
38 |
+
|
39 |
+
Huang, Allen H., Hui Wang, and Yi Yang. "FinBERT: A Large Language Model for Extracting Information from Financial Text." *Contemporary Accounting Research* (2022).
|