mirror of
https://github.com/wassname/Castor.git
synced 2026-08-20 12:00:37 +08:00
* Refactor main README * Update Anserini Dependency docs * Update idf baseline and Kim CNN docs to use Castor-data * Update remaining READMEs to reference Castor-data * Change default path from data to Castor-data * Fix wrong order of embeddings path
148 lines
5.9 KiB
Python
Executable File
148 lines
5.9 KiB
Python
Executable File
import argparse
|
|
import configparser
|
|
import os
|
|
import sys
|
|
|
|
from flask import Flask, jsonify, request
|
|
# FIXME: separate this out to a classifier class where we can switch out the models
|
|
|
|
from anserini_dependency.RetrieveSentences import RetrieveSentences
|
|
from sm_cnn.bridge import SMModelBridge
|
|
|
|
app = Flask(__name__)
|
|
rs = None
|
|
smmodel = None
|
|
idf_json = None
|
|
|
|
@app.route("/", methods=['GET'])
|
|
def hello():
|
|
return "Hello! The server is working properly... :)"
|
|
|
|
@app.route('/answer', methods=['POST'])
|
|
def answer():
|
|
try:
|
|
req = request.get_json(force=True)
|
|
question = req["question"]
|
|
num_hits = req.get('num_hits', 30)
|
|
k = req.get('k', 20)
|
|
print("Question: {}".format(question))
|
|
# FIXME: get the answer from the PyTorch model here
|
|
answers = get_answers(question, num_hits, k)
|
|
answer_dict = {"answers": answers}
|
|
return jsonify(answer_dict)
|
|
except Exception as e:
|
|
print(e)
|
|
error_dict = {"error": "ERROR - could not parse the question or get answer. "}
|
|
return jsonify(error_dict)
|
|
|
|
@app.route('/wit_ai_config', methods=['GET'])
|
|
def wit_ai_config():
|
|
return jsonify({'WITAI_API_SECRET': app.config['Frontend']['witai_api_secret']})
|
|
|
|
# FIXME: separate this out to a classifier class where we can switch out the models
|
|
def get_answers(question, num_hits, k):
|
|
|
|
parser = argparse.ArgumentParser(description='Retrieve Sentences')
|
|
parser.add_argument("--index", help="Lucene index", required=True)
|
|
parser.add_argument("--embeddings", help="Path of the word2vec index", default="")
|
|
parser.add_argument("--topics", help="topics file", default="")
|
|
parser.add_argument("--query", help="a single query", default="")
|
|
parser.add_argument("--hits", help="max number of hits to return", default=100)
|
|
parser.add_argument("--scorer", help="passage scores", default="Idf")
|
|
parser.add_argument("--k", help="top-k passages to be retrieved", default=1)
|
|
parser.add_argument('--model', help="the path to the saved model file")
|
|
parser.add_argument('--dataset', help="the QA dataset folder {TrecQA|WikiQA}", default='../../Castor-data/TrecQA/')
|
|
parser.add_argument('--no_cuda', action='store_false', help='do not use cuda', dest='cuda')
|
|
parser.add_argument('--gpu', type=int, default=0) # Use -1 for CPU
|
|
parser.add_argument('--seed', type=int, default=3435)
|
|
|
|
arg_list = ["--query", question, "--hits", str(num_hits), "--scorer", "Idf", "--k", str(k),
|
|
"--index", app.config['Flask']['index'], "--model", app.config['Flask']['model'],
|
|
"--gpu", str(app.config['Flask']['gpu']), "--seed", str(app.config['Flask']['seed']),
|
|
"--dataset", app.config['Flask']['dataset']]
|
|
|
|
if not app.config['Flask']['cuda']:
|
|
arg_list.append("--no_cuda")
|
|
|
|
args_raw = parser.parse_args(arg_list)
|
|
|
|
global rs
|
|
global smmodel
|
|
global idf_json
|
|
|
|
if rs == None:
|
|
rs = RetrieveSentences(args_raw)
|
|
idf_json = rs.getTermIdfJSON()
|
|
candidate_passages_scores = rs.getRankedPassages(question, app.config['Flask']['index'], num_hits, k)
|
|
|
|
candidate_sent_scores = []
|
|
candidate_passages_sm = []
|
|
|
|
for ps in candidate_passages_scores:
|
|
ps_split = ps.split('\t')
|
|
candidate_passages_sm.append(ps_split[0])
|
|
candidate_sent_scores.append((float(ps_split[1]), ps_split[0]))
|
|
|
|
if app.config['Flask']['reranker'] == "sm":
|
|
if smmodel == None:
|
|
smmodel = SMModelBridge(args_raw)
|
|
answers_list = smmodel.rerank_candidate_answers(question, candidate_passages_scores, idf_json)
|
|
sorted_answers = sorted(answers_list, key=lambda x: x[0], reverse=True)
|
|
else:
|
|
# the re-ranking model chosen is idf
|
|
sorted_answers = list(candidate_sent_scores)
|
|
|
|
print("in idf:{}".format(sorted_answers))
|
|
answers = []
|
|
for score, sent in sorted_answers:
|
|
answers.append({'passage': sent, 'score': score})
|
|
|
|
print(answers)
|
|
return answers
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description='Start the Flask API at the specified host, port')
|
|
parser.add_argument('--config', help='config to use', required=False, type=str, default='config.cfg')
|
|
parser.add_argument("--debug", help="print debug info", action="store_true")
|
|
parser.add_argument("--reranker", help="[idf|sm]", default="idf")
|
|
parser.add_argument('--model', help="the path to the saved model file")
|
|
parser.add_argument('--no_cuda', action='store_false', help='do not use cuda', dest='cuda')
|
|
parser.add_argument('--gpu', type=int, default=0) # Use -1 for CPU
|
|
parser.add_argument('--seed', type=int, default=3435)
|
|
parser.add_argument('--dataset', help="the QA dataset folder {TrecQA|WikiQA}", default='../../Castor-data/TrecQA/')
|
|
|
|
args = parser.parse_args()
|
|
if not args.cuda:
|
|
args.gpu = -1
|
|
|
|
if not os.path.isfile(args.config):
|
|
print("The configuration file ({}) does not exist!".format(args.config))
|
|
sys.exit(1)
|
|
|
|
config = configparser.ConfigParser()
|
|
config.read(args.config)
|
|
|
|
for name, section in config.items():
|
|
if name == 'DEFAULT':
|
|
continue
|
|
|
|
app.config[name] = {}
|
|
for key, value in config.items(name):
|
|
app.config[name][key] = value
|
|
|
|
app.config['Flask']['reranker'] = args.reranker
|
|
app.config['Flask']['model'] = args.model
|
|
app.config['Flask']['cuda'] = args.cuda
|
|
app.config['Flask']['gpu'] = str(args.gpu)
|
|
app.config['Flask']['seed'] = str(args.seed)
|
|
app.config['Flask']['dataset'] = str(args.dataset)
|
|
|
|
print("Config: {}".format(args.config))
|
|
print("Index: {}".format(app.config['Flask']['index']))
|
|
print("Host: {}".format(app.config['Flask']['host']))
|
|
print("Port: {}".format(app.config['Flask']['port']))
|
|
print("Re-ranking Model: {}".format(app.config['Flask']['reranker']))
|
|
print("Debug info: {}".format(args.debug))
|
|
|
|
app.run(debug=args.debug, host=app.config['Flask']['host'], port=int(app.config['Flask']['port']))
|