Views
No views yet
distilroberta-base that predicts the primary theme of a climate-related article or paragraph.theme label.label_map.json.distilroberta-basetest_metrics.json.1from transformers import pipeline
2
3classifier = pipeline(
4 "text-classification",
5 model="maai-project/maai-theme-sl"
6)
7
8classifier("New policies aim to reduce carbon emissions and introduce carbon taxes.")