Initial Space setup
Browse files
app.py
CHANGED
@@ -4,8 +4,8 @@ from transformers import pipeline
|
|
4 |
# Load your fine-tuned model from the Hub
|
5 |
chatbot = pipeline(
|
6 |
"text2text-generation",
|
7 |
-
model="
|
8 |
-
tokenizer="
|
9 |
)
|
10 |
|
11 |
def respond(query):
|
|
|
4 |
# Load your fine-tuned model from the Hub
|
5 |
chatbot = pipeline(
|
6 |
"text2text-generation",
|
7 |
+
model="abinashnp/bayedger-chatbot", # or your fine-tuned model ID
|
8 |
+
tokenizer="abinashnp/bayedger-chatbot",
|
9 |
)
|
10 |
|
11 |
def respond(query):
|