-
Notifications
You must be signed in to change notification settings - Fork 80
/
approve_assignments.py
53 lines (46 loc) · 1.96 KB
/
approve_assignments.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
import argparse, json
import simpleamt
import re
if __name__ == '__main__':
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument('--prod', action='store_false', dest='sandbox',
default=True,
help="Whether to run on the production AMT site.")
parser.add_argument('--assignment_ids_file')
parser.add_argument('-f', action='store_true', default=False)
parser.add_argument('--config', default='config.json', type=simpleamt.json_file)
args = parser.parse_args()
mtc = simpleamt.get_mturk_connection_from_args(args)
approve_ids = []
reject_ids = []
if args.assignment_ids_file is None:
parser.error('Must specify --assignment_ids_file.')
with open(args.assignment_ids_file, 'r') as f:
assignment_ids = [line.strip() for line in f]
for a_id in assignment_ids:
a = mtc.get_assignment(AssignmentId=a_id)['Assignment']
if a['AssignmentStatus'] == 'Submitted':
try:
# Try to parse the output from the assignment. If it isn't
# valid JSON then we reject the assignment.
json.loads(re.search(r'<FreeText>(?P<answer>.*?)</FreeText>', a['Answer'])['answer'])
approve_ids.append(a_id)
except ValueError as e:
reject_ids.append(a_id)
print('This will approve %d assignments and reject %d assignments with '
'sandbox=%s' % (len(approve_ids), len(reject_ids), str(args.sandbox)))
print('Continue?')
if not args.f:
s = input('(Y/N): ')
else:
s = 'Y'
if s == 'Y' or s == 'y':
print('Approving assignments')
for idx, assignment_id in enumerate(approve_ids):
print('Approving assignment %d / %d' % (idx + 1, len(approve_ids)))
mtc.approve_assignment(AssignmentId=assignment_id)
for idx, assignment_id in enumerate(reject_ids):
print('Rejecting assignment %d / %d' % (idx + 1, len(reject_ids)))
mtc.reject_assignment(AssignmentId=assignment_id, RequesterFeedback='Invalid results')
else:
print('Aborting')