Instructions to use Amiri/Bert_test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Amiri/Bert_test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Amiri/Bert_test")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Amiri/Bert_test") model = AutoModelForSequenceClassification.from_pretrained("Amiri/Bert_test") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
| 1 |
---
|
| 2 |
widget:
|
| 3 |
-
- text: "I don't like angry birds
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
|
|
|
| 1 |
---
|
| 2 |
widget:
|
| 3 |
+
- text: "I don't like angry birds"
|
| 4 |
+
- text: "I love angry birds"
|
| 5 |
+
- text: "I don't have any friends"
|
| 6 |
+
- text: "Life is fun!"
|
| 7 |
---
|