Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
# Load the conversational pipeline
|
5 |
-
model_name = "QAModel"
|
6 |
chatbot_pipeline = pipeline("conversational", model=model_name, tokenizer=model_name)
|
7 |
|
8 |
# Set the title for the Streamlit app
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
# Load the conversational pipeline
|
5 |
+
model_name = "./QAModel"
|
6 |
chatbot_pipeline = pipeline("conversational", model=model_name, tokenizer=model_name)
|
7 |
|
8 |
# Set the title for the Streamlit app
|