Instructions to use Ayushb/roberta-base-ft-esg with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Ayushb/roberta-base-ft-esg with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Ayushb/roberta-base-ft-esg")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("Ayushb/roberta-base-ft-esg") model = AutoModelForQuestionAnswering.from_pretrained("Ayushb/roberta-base-ft-esg", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload new README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# ESG Question Answering
|
| 3 |
+
|
| 4 |
+
A NLP service to identify Emission Reduction Targets and Mechanisms of various companies from their ESG disclosure or Annual Reports.
|
| 5 |
+
|
| 6 |
+
This Roberta-Base model has been finetuned on a very small sample (manually annotated). A lot of companies have clear mentions of targets & goals than methodologies which is why it can currently identify only targets & goals more precisely.
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
## Authors
|
| 10 |
+
|
| 11 |
+
- [@Ayush Bhosle](https://www.github.com/Ayush1702)
|
| 12 |
+
|