Spaces:
Sleeping
Sleeping
Create app
Browse files
app
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers import pipeline
|
| 2 |
+
|
| 3 |
+
model_name = "colab-user/distilbert-finetuned-classifier"
|
| 4 |
+
chatbot = pipeline("text-generation", model=model_name)
|
| 5 |
+
|
| 6 |
+
response = chatbot("Hello, how are you?")
|
| 7 |
+
print(response[0]['generated_text'])
|