-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModel_codebase_2_flask.py
36 lines (28 loc) · 1.14 KB
/
Model_codebase_2_flask.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#11915010 Raghu Punnamraju
#11915043 Anmol More
#11915001 Sriganesh Balamurugan
#11915052 Kapil Bindal
import pandas as pd
from ast import literal_eval
from cdqa.utils.filters import filter_paragraphs
from cdqa.utils.download import download_model, download_bnpp_data
from cdqa.pipeline.cdqa_sklearn import QAPipeline
#read the cleaned dataset and just take question and context for our model
df = pd.read_csv('data/dataset_collected.csv', usecols=['question', 'context'])
#convert paragraphs to a list
df['paragraphs'] = df[df.columns[1:]].apply(
lambda x: x.dropna().values.tolist(),
axis=1)
df.rename(columns={"question": "title"}, inplace=True)
df.drop(columns='context', inplace=True)
df.to_csv('df_corona.csv', index=False)
#use a lighter pipleline model to build pipeline on top of it
cdqa_pipeline = QAPipeline(reader='models/distilbert_qa.joblib')
cdqa_pipeline.fit_retriever(df=df)
print('Welcome to Corona Chatbot ! How can I help you ? ')
print('Press enter twice to quit')
while True:
query = input()
prediction = cdqa_pipeline.predict(query=query)
print('Query : {}\n'.format(query))
print('Reply from Bot: {}\n'.format(prediction[0]))