Downloads · 30 days
737
0% of all-time downloads
Elron/bleurt-base-128
bleurt-base-128 is a text classification model from Elron. Use it when you need a label for a piece of text. It is set up for transformers.
Downloads · 30 days
737
0% of all-time downloads
All-time downloads
685K
Public
Repo size
876 MB
Likes
3
Public
Click a slice to open those files.
.bin438 MB · 100%
From the Hugging Face model README
\n## BLEURT
Pytorch version of the original BLEURT models from ACL paper "BLEURT: Learning Robust Metrics for Text Generation" by Thibault Sellam, Dipanjan Das and Ankur P. Parikh of Google Research.
The code for model conversion was originated from this notebook mentioned here.
from transformers import AutoModelForSequenceClassification, AutoTokenizer
import torch
tokenizer = AutoTokenizer.from_pretrained("Elron/bleurt-base-128")
model = AutoModelForSequenceClassification.from_pretrained("Elron/bleurt-base-128")
model.eval()
references = ["hello world", "hello world"]
candidates = ["hi universe", "bye world"]
with torch.no_grad():
scores = model(**tokenizer(references, candidates, return_tensors='pt'))[0].squeeze()
print(scores) # tensor([0.3598, 0.0723])