Views
No views yet
@inproceedings{arthur2023debunker,
title={Debunker Assistant: a support for detecting online misinformation},
author={Arthur, Thomas Edward Capozzi Lupi and Cignarella, Alessandra Teresa and Frenda, Simona and Lai, Mirko and Stranisci, Marco Antonio and Urbinati, Alessandra and others},
booktitle={Proceedings of the Ninth Italian Conference on Computational Linguistics (CLiC-it 2023)},
volume={3596},
pages={1--5},
year={2023},
organization={Federico Boschetti, Gianluca E. Lebani, Bernardo Magnini, Nicole Novielli}
}1model = AutoModelForSequenceClassification.from_pretrained('aequa-tech/sentiment-it',num_labels=3, ignore_mismatched_sizes=True)
2tokenizer = AutoTokenizer.from_pretrained("m-polignano-uniba/bert_uncased_L-12_H-768_A-12_italian_alb3rt0")
3classifier = pipeline("text-classification", model=model, tokenizer=tokenizer, top_k=None)
4classifier("L'insostenibile leggerezza dell'essere")