File size: 661 Bytes
dfa31cf 1c59669 b8410a8 dfa31cf 1c59669 dfa31cf cc775d9 dfa31cf cc775d9 dfa31cf cc775d9 dfa31cf cc775d9 dfa31cf cc775d9 b8410a8 cc775d9 dfa31cf 7de2289 44bfb58 7de2289 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
---
library_name: transformers
tags:
- text-classification
widget:
- text: RoBERTo
pipeline_tag: text-classification
---
# RoBERTo
- Problem type: Text Classification
## Inference
You can use the following Python code to perform inference with this model using the `transformers` library:
```python
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)
```
# Use through Google Colab
https://colab.research.google.com/drive/1wxfY0lWPRRYhj6oklj-p9mw5HcSFWXCL?usp=sharing |