Spaces:
Sleeping
Sleeping
SirinootKK
commited on
Commit
•
fcea57d
1
Parent(s):
610dfca
fix app file
Browse files
app.py
CHANGED
@@ -13,6 +13,7 @@ from pythainlp import Tokenizer
|
|
13 |
import pickle
|
14 |
import evaluate
|
15 |
from sklearn.metrics.pairwise import cosine_similarity,euclidean_distances
|
|
|
16 |
|
17 |
print(torch.cuda.is_available())
|
18 |
|
@@ -215,20 +216,13 @@ bot = ChatbotModel()
|
|
215 |
|
216 |
"""#Gradio"""
|
217 |
|
218 |
-
import gradio as gr
|
219 |
|
220 |
EXAMPLE_PATH = ["หลิน ไห่เฟิง มีชื่อเรียกอีกชื่อว่าอะไร" , "ใครเป็นผู้ตั้งสภาเศรษฐกิจโลกขึ้นในปี พ.ศ. 2514 โดยทุกปีจะมีการประชุมที่ประเทศสวิตเซอร์แลนด์", "โปรดิวเซอร์ของอัลบั้มตลอดกาล ของวงคีรีบูนคือใคร", "สกุลเดิมของหม่อมครูนุ่ม นวรัตน ณ อยุธยา คืออะไร"]
|
221 |
|
222 |
-
demoFaiss = gr.
|
223 |
-
demoBert = gr.
|
224 |
-
demoSemantic = gr.
|
225 |
-
demoWithoutFiss = gr.
|
226 |
|
227 |
demo = gr.TabbedInterface([demoFaiss, demoWithoutFiss, demoBert, demoSemantic], ["Faiss", "Model", "Faiss & Model", "Semantic Search & Model"])
|
228 |
-
demo.launch()
|
229 |
-
if __name__ == "__main__":
|
230 |
-
df = load_data()
|
231 |
-
model, tokenizer = load_model('wangchanberta-hyp')
|
232 |
-
embedding_model = load_embedding_model()
|
233 |
-
index = set_index(prepare_sentences_vector(load_embeddings(EMBEDDINGS_PATH)))
|
234 |
-
interface.launch()
|
|
|
13 |
import pickle
|
14 |
import evaluate
|
15 |
from sklearn.metrics.pairwise import cosine_similarity,euclidean_distances
|
16 |
+
import gradio as gr
|
17 |
|
18 |
print(torch.cuda.is_available())
|
19 |
|
|
|
216 |
|
217 |
"""#Gradio"""
|
218 |
|
|
|
219 |
|
220 |
EXAMPLE_PATH = ["หลิน ไห่เฟิง มีชื่อเรียกอีกชื่อว่าอะไร" , "ใครเป็นผู้ตั้งสภาเศรษฐกิจโลกขึ้นในปี พ.ศ. 2514 โดยทุกปีจะมีการประชุมที่ประเทศสวิตเซอร์แลนด์", "โปรดิวเซอร์ของอัลบั้มตลอดกาล ของวงคีรีบูนคือใคร", "สกุลเดิมของหม่อมครูนุ่ม นวรัตน ณ อยุธยา คืออะไร"]
|
221 |
|
222 |
+
demoFaiss = gr.ChatInterface(fn=bot._chatbot.predict_faiss, examples=EXAMPLE_PATH)
|
223 |
+
demoBert = gr.ChatInterface(fn=bot._chatbot.predict_bert_embedding,examples=EXAMPLE_PATH)
|
224 |
+
demoSemantic = gr.ChatInterface(fn=bot._chatbot.predict_semantic_search,examples=EXAMPLE_PATH)
|
225 |
+
demoWithoutFiss = gr.ChatInterface(fn=bot._chatbot.predict_without_faiss,examples=EXAMPLE_PATH)
|
226 |
|
227 |
demo = gr.TabbedInterface([demoFaiss, demoWithoutFiss, demoBert, demoSemantic], ["Faiss", "Model", "Faiss & Model", "Semantic Search & Model"])
|
228 |
+
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|