RoBERTo
Collection
BERT based detection models. Series of RoBERTo models. First models and first text classifier models from Phase Technologies.
•
2 items
•
Updated
You can use the following Python code to perform inference with this model using the transformers
library:
from transformers import pipeline
# Load the model
classifier = pipeline("text-classification", model="Phase-Technologies/RoBERTo")
# Perform inference
text = "Phase Technologies is a company"
result = classifier(text)
print(result)
https://colab.research.google.com/drive/1wxfY0lWPRRYhj6oklj-p9mw5HcSFWXCL?usp=sharing