Views
No views yet
| Metric | Score |
|---|---|
| Accuracy | 0.7500 |
| F1 Score | 0.6429 |
| Precision | 0.5625 |
| Recall | 0.7500 |
1from transformers import pipeline
2
3classifier = pipeline(
4 "text-classification",
5 model="hiennthp/vietnamese-greenwashing-detector",
6 tokenizer="hiennthp/vietnamese-greenwashing-detector"
7)
8
9text = "Ngân hàng cam kết giảm 30% khí thải carbon trong năm 2024."
10result = classifier(text)
11print(result)1@misc{vietnamese-greenwashing-detector-v1-0-0,
2 author = {hiennthp},
3 title = {Vietnamese Greenwashing Detection Model},
4 year = {2024},
5 publisher = {Hugging Face},
6 version = {v1.0.0},
7 url = {https://huggingface.co/hiennthp/vietnamese-greenwashing-detector}
8}