kairaamilanii commited on
Commit
3d10001
·
verified ·
1 Parent(s): 5dd2279

Update README.md

Browse files

# Implementation

from transformers import pipeline

model = "/content/RoBERTa-mind14-classifier-intent"
classifier = pipeline("text-classification", model=model)

text = "hi what's the maximum amount of money I can withdraw from" # Replace with your desired input text

prediction = classifier(text)
prediction

Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -52,4 +52,6 @@ model-index:
52
  - name: f1
53
  type: f1
54
  value: 0.9724
55
- ---
 
 
 
52
  - name: f1
53
  type: f1
54
  value: 0.9724
55
+ ---
56
+
57
+