Instructions to use climatebert/netzero-reduction with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use climatebert/netzero-reduction with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="climatebert/netzero-reduction")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("climatebert/netzero-reduction") model = AutoModelForSequenceClassification.from_pretrained("climatebert/netzero-reduction", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Commit ·
bd107b6
1
Parent(s): 8b05557
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,10 +13,13 @@ We use the [climatebert/distilroberta-base-climate-f](https://huggingface.co/cli
|
|
| 13 |
## Citation Information
|
| 14 |
|
| 15 |
```bibtex
|
| 16 |
-
@article{
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
| 20 |
}
|
| 21 |
```
|
| 22 |
|
|
|
|
| 13 |
## Citation Information
|
| 14 |
|
| 15 |
```bibtex
|
| 16 |
+
@article{schimanski2023climatebertnetzero,
|
| 17 |
+
title={ClimateBERT-NetZero: Detecting and Assessing Net Zero and Reduction Targets},
|
| 18 |
+
author={Tobias Schimanski and Julia Bingler and Camilla Hyslop and Mathias Kraus and Markus Leippold},
|
| 19 |
+
year={2023},
|
| 20 |
+
eprint={2310.08096},
|
| 21 |
+
archivePrefix={arXiv},
|
| 22 |
+
primaryClass={cs.LG}
|
| 23 |
}
|
| 24 |
```
|
| 25 |
|