-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathid2emb_client.py
45 lines (37 loc) · 1.29 KB
/
id2emb_client.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
37
38
39
40
41
42
43
44
'''
Web service that implements a mention linker to arbitrary KBs.
Example call: curl 'http://127.0.0.1:5000/linking/get_best?source=onto_type&mention=angelina'
'''
import argparse
import base64
import pickle
import requests
from flask import Flask, request, jsonify
import json
import logging
import numpy as np
import os
import sys
def embed_id(kb_id):
"""
mention might be a list of words that form a single mention,
or a string with a single word.
"""
url = "http://127.0.0.1:5010/embedding/id2emb?id={0}".format(kb_id)
request_result = requests.get(url)
result = request_result.json()
return result
# print(embed_id('dbo:Island'))
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument("--id", help="Knowledge base identifier")
parser.add_argument("--path", help="Path (default: /embedding)")
parser.add_argument("--host", help="Host (default: localhost)")
parser.add_argument("--port", help="Port (default: 5010)")
args = parser.parse_args()
logging.basicConfig(level=logging.INFO, format='%(asctime)s %(message)s')
host = args.host if args.host else "localhost"
path = args.path if args.path else "/embedding"
port = int(args.port) if args.port else 5010
result = embed_id(args.id)
print(result)