Quintu/roberta-large-1280-product
Mô hình Quintu/roberta-large-1280-product
được thiết kế để thực hiện phân loại văn bản liên quan đến phát hiện sản phẩm.
Cách sử dụng
Dưới đây là cách sử dụng mô hình này với thư viện transformers
:
from transformers import AutoTokenizer, AutoModelForSequenceClassification
# Tải mô hình và tokenizer
model_name = "Quintu/roberta-large-1280-product"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForSequenceClassification.from_pretrained(model_name)
# Sử dụng mô hình để phân loại văn bản
text = "This is an example text to classify."
inputs = tokenizer(text, return_tensors="pt")
outputs = model(**inputs)
# Dự đoán
logits = outputs.logits
print(logits)
- Downloads last month
- 7
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.