This repository was archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 342
/
Copy pathlocal_human.py
121 lines (81 loc) · 2.88 KB
/
local_human.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
"""
Agent does gets the local keyboard input in the act() function.
Example: parlai eval_model -m local_human -t babi:Task1k:1 -dt valid
"""
from parlai.core.agents import Agent
from parlai.core.message import Message
from parlai.utils.misc import display_messages, load_cands
from parlai.utils.strings import colorize
import requests
import json
from waiting import wait
import os
class LocalHumanAgent(Agent):
def add_cmdline_args(argparser):
"""
Add command-line arguments specifically for this agent.
"""
agent = argparser.add_argument_group('Local Human Arguments')
agent.add_argument(
'-fixedCands',
'--local-human-candidates-file',
default=None,
type=str,
help='File of label_candidates to send to other agent',
)
agent.add_argument(
'--single_turn',
type='bool',
default=False,
help='If on, assumes single turn episodes.',
)
def __init__(self, opt, shared=None):
super().__init__(opt)
self.id = 'localHuman'
self.episodeDone = False
self.finished = False
self.fixedCands_txt = load_cands(self.opt.get('local_human_candidates_file'))
print(
colorize(
"Enter [DONE] if you want to end the episode, [EXIT] to quit.",
'highlight',
)
)
def epoch_done(self):
return self.finished
def observe(self, msg):
print(
display_messages(
[msg],
prettify=self.opt.get('display_prettify', False),
)
)
def act(self):
reply = Message()
print("reply:",reply)
reply['id'] = self.getID()
def is_something_ready(file):
file = os.path.isfile(file)
if file is True:
return True
return False
# wait for something to be ready
something = "input.txt"
wait(lambda: is_something_ready(something), waiting_for="input.txt file to be ready")
file = open("input.txt","r").read()
text = file.split("_")
text = text[0]
reply_text = text
print("reply_text_initial",reply_text)
reply['episode_done'] = False
reply['label_candidates'] = self.fixedCands_txt
reply['text'] = reply_text
#reply = {'id': 'localHuman', 'episode_done': False, 'label_candidates': None, 'text': reply}
#os.remove("input.txt")
return reply
def episode_done(self):
return self.episodeDone