Instructions to use KantoRegion/bert-test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KantoRegion/bert-test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="KantoRegion/bert-test")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("KantoRegion/bert-test") model = AutoModelForSequenceClassification.from_pretrained("KantoRegion/bert-test") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,10 +4,17 @@ language:
|
|
| 4 |
---
|
| 5 |
This model evaluates if character wants to send an image to user right now.
|
| 6 |
|
| 7 |
-
[input]
|
|
|
|
| 8 |
{user's text}
|
| 9 |
{character's text}
|
|
|
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
1: yes
|
| 13 |
-
0: no
|
|
|
|
|
|
| 4 |
---
|
| 5 |
This model evaluates if character wants to send an image to user right now.
|
| 6 |
|
| 7 |
+
### [input]
|
| 8 |
+
```
|
| 9 |
{user's text}
|
| 10 |
{character's text}
|
| 11 |
+
```
|
| 12 |
|
| 13 |
+
(two value should be separated with newline)
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
### [output]
|
| 17 |
+
```
|
| 18 |
1: yes
|
| 19 |
+
0: no
|
| 20 |
+
```
|