Downloads · 30 days
7
12% of all-time downloads
ctu-aic/FERNET-C5-csfever
FERNET-C5-csfever is a text classification model from ctu-aic. Use it when you need a label for a piece of text. It is set up for transformers.
('---\ndatasets:\n- ctu-aic/csfever\nlanguages:\n- cs\nlicense: cc-by-sa-4.0\ntags:\n- natural-language-inference\n\n---',)
Downloads · 30 days
7
12% of all-time downloads
All-time downloads
60
Public
Repo size
2 GB
Likes
0
Public
Click a slice to open those files.
.h5652 MB · 50%
From the Hugging Face model README
('---\ndatasets:\n- ctu-aic/csfever\nlanguages:\n- cs\nlicense: cc-by-sa-4.0\ntags:\n- natural-language-inference\n\n---',)
Transformer model for Natural Language Inference in ['cs'] languages finetuned on ['ctu-aic/csfever'] datasets.
sentence_transformers CrossEncoderThe model was trained using the CrossEncoder API and we recommend it for its usage.
from sentence_transformers.cross_encoder import CrossEncoder
model = CrossEncoder('ctu-aic/FERNET-C5-csfever')
scores = model.predict([["My first context.", "My first hypothesis."],
["Second context.", "Hypothesis."]])
transformersfrom transformers import AutoModelForSequenceClassification, AutoTokenizer
model = AutoModelForSequenceClassification.from_pretrained("ctu-aic/FERNET-C5-csfever")
tokenizer = AutoTokenizer.from_pretrained("ctu-aic/FERNET-C5-csfever")
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
The model was trained and uploaded by ullriher (e-mail: ullriher@fel.cvut.cz)
The code was codeveloped by the NLP team at Artificial Intelligence Center of CTU in Prague (AIC).
If you find this repository helpful, feel free to cite our publication:
@article{DBLP:journals/corr/abs-2201-11115,
author = {Herbert Ullrich and
Jan Drchal and
Martin R{'{y}}par and
Hana Vincourov{'{a}} and
V{'{a}}clav Moravec},
title = {CsFEVER and CTKFacts: Acquiring Czech Data for Fact Verification},
journal = {CoRR},
volume = {abs/2201.11115},
year = {2022},
url = {https://arxiv.org/abs/2201.11115},
eprinttype = {arXiv},
eprint = {2201.11115},
timestamp = {Tue, 01 Feb 2022 14:59:01 +0100},
biburl = {https://dblp.org/rec/journals/corr/abs-2201-11115.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}