mljn commited on
Commit
0e4f8ae
·
verified ·
1 Parent(s): 8ceb87c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -1
README.md CHANGED
@@ -29,7 +29,20 @@ This model is a fine-tuned version of [microsoft/deberta-v3-base](https://huggin
29
 
30
  <pre><code>```python from transformers import pipeline classifier = pipeline("text-classification", model="your-username/unga-climate-classifier") text = "Climate change poses a fundamental threat to our future." result = classifier(text) print(result) ```</code></pre>
31
 
32
-
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  It achieves the following results on the evaluation set:
34
  - Loss: 0.0807
35
  - Accuracy: 0.975
 
29
 
30
  <pre><code>```python from transformers import pipeline classifier = pipeline("text-classification", model="your-username/unga-climate-classifier") text = "Climate change poses a fundamental threat to our future." result = classifier(text) print(result) ```</code></pre>
31
 
32
+ If you use this model or the underlying dataset or indicator, please cite:
33
+
34
+ > [Authors’ Names]. "Executive Climate Change Attention: Toward an Indicator Based on Political Speech." *Global Environmental Politics* (2024). [https://doi.org/10.1162/glep.a.1/131712](https://doi.org/10.1162/glep.a.1/131712)
35
+
36
+ ```bibtex
37
+ @article{author2024executive,
38
+ title={Executive Climate Change Attention: Toward an Indicator Based on Political Speech},
39
+ author={LastName, FirstName and Coauthor, AnotherName},
40
+ journal={Global Environmental Politics},
41
+ year={2024},
42
+ publisher={MIT Press},
43
+ doi={10.1162/glep.a.1/131712}
44
+ }
45
+ ```
46
  It achieves the following results on the evaluation set:
47
  - Loss: 0.0807
48
  - Accuracy: 0.975