Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.02 KB

File metadata and controls

52 lines (41 loc) · 1.02 KB

install

python3 is required

client

pip install -r client_requirements.txt

server

pip install -r requirements.txt

usage

client

cli interface

./client.py 
from client import FuzzyClient

fc = FuzzyClient(ip='35.200.11.163', port=8888)
fc.user_select()

server

for inference and path finding

./server.py --model_path 'some_path' --port 8888
from server import FuzzyServer

args = helper.get_args_parser()
fs = FuzzyServer(args)
fs.start()
fs.join()

Example

기존의 모기 -> 좋아 의 확률 = 0.20
*생명 -> 소중함(0.9) 등 의 포함 관계들은 미리 등록되어 있습니다.
image

곤충 -> 놀라워(0.6) 엣지 추가된 후
모기 -> 좋아 의 확률 = 0.35
image