Spaces:
Sleeping
Sleeping
Chananchida
commited on
Commit
•
1139515
1
Parent(s):
9ee8309
Update app.py
Browse files
app.py
CHANGED
@@ -68,6 +68,7 @@ class Chatbot:
|
|
68 |
|
69 |
def load_data(self, path: str = DATA_PATH):
|
70 |
self.df = pd.read_excel(path, sheet_name='Default')
|
|
|
71 |
self.df['Context'] = pd.read_excel(path, sheet_name='mdeberta')['Context']
|
72 |
|
73 |
def load_model(self, model_name: str = DEFAULT_MODEL):
|
@@ -173,7 +174,7 @@ if __name__ == "__main__":
|
|
173 |
highlighted_answer = highlight_text(response["answer"], response["highlight_start"], response["highlight_end"])
|
174 |
return highlighted_answer
|
175 |
|
176 |
-
EXAMPLE = ["หลิน ไห่เฟิง มีชื่อเรียกอีกชื่อว่าอะไร" , "ใครเป็นผู้ตั้งสภาเศรษฐกิจโลกขึ้นในปี พ.ศ. 2514 โดยทุกปีจะมีการประชุมที่ประเทศสวิตเซอร์แลนด์", "โปรดิวเซอร์ของอัลบั้มตลอดกาล ของวงคีรีบูนคือใคร", "สกุลเดิมของหม่อมครูนุ่ม นวรัตน ณ อยุธยา คืออะไร"]
|
177 |
|
178 |
-
demo = gr.ChatInterface(fn=chat_interface, examples=
|
179 |
demo.launch()
|
|
|
68 |
|
69 |
def load_data(self, path: str = DATA_PATH):
|
70 |
self.df = pd.read_excel(path, sheet_name='Default')
|
71 |
+
self.test_df = pd.read_excel(path, sheet_name='Test')
|
72 |
self.df['Context'] = pd.read_excel(path, sheet_name='mdeberta')['Context']
|
73 |
|
74 |
def load_model(self, model_name: str = DEFAULT_MODEL):
|
|
|
174 |
highlighted_answer = highlight_text(response["answer"], response["highlight_start"], response["highlight_end"])
|
175 |
return highlighted_answer
|
176 |
|
177 |
+
# EXAMPLE = ["หลิน ไห่เฟิง มีชื่อเรียกอีกชื่อว่าอะไร" , "ใครเป็นผู้ตั้งสภาเศรษฐกิจโลกขึ้นในปี พ.ศ. 2514 โดยทุกปีจะมีการประชุมที่ประเทศสวิตเซอร์แลนด์", "โปรดิวเซอร์ของอัลบั้มตลอดกาล ของวงคีรีบูนคือใคร", "สกุลเดิมของหม่อมครูนุ่ม นวรัตน ณ อยุธยา คืออะไร"]
|
178 |
|
179 |
+
demo = gr.ChatInterface(fn=chat_interface, examples=bot._chatbot.test_df,examples_per_page=4, title="CE66-04: Thai Question Answering System by using Deep Learning")
|
180 |
demo.launch()
|