-
Notifications
You must be signed in to change notification settings - Fork 1
/
workers.py
114 lines (102 loc) · 3.72 KB
/
workers.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
from config import Config as config
from utils import job_info_template, job_complete_template
from utils import job_error_template, job_running_template
import redis
from rq import get_current_job
import json
import requests
from midi_helpers import post_process_midi, _update_job_event
from midi_helpers import register_submission_on_redis
import uuid
from crowdai_api import API as CROWDAI_API
if config.redis_password:
POOL = redis.ConnectionPool(
host=config.redis_host, port=config.redis_port, db=config.redis_db, password=config.redis_password)
else:
POOL = redis.ConnectionPool(
host=config.redis_host, port=config.redis_port, db=config.redis_db)
def grade_submission(data, _context):
file_key = data["file_key"]
_update_job_event(
_context,
job_info_template(
_context, "Post Processing MIDI file...."))
pruned_filekey, converted_filekeys = post_process_midi(
_context,
POOL,
file_key
)
processed_filekeys = converted_filekeys
print("Making submission on crowdAI")
api = CROWDAI_API(config.CROWDAI_TOKEN)
api.authenticate_participant(_context["api_key"])
meta = {}
meta["file_key"] = file_key
#meta["processed_filekeys"] = processed_filekeys
submission = api.create_submission(config.challenge_id)
submission.score = config.SCORE_DEFAULT
submission.score_secondary = config.SCORE_SECONDARY_DEFAULT
submission.grading_status = "graded"
submission.meta = meta
submission.update()
submission_id = submission.id
print("Submitted : ", submission)
register_submission_on_redis(
_context,
POOL,
submission_id,
pruned_filekey,
processed_filekeys
)
message_for_participants = """
Score (mu) : {}
Secondary_score (sigma) : {}
Please note that these scores are only the initial scores,
and they will change over time as your submission is
evaluated by the human volunteers.
""".format(submission.score, submission.score_secondary)
_update_job_event(
_context,
job_info_template(
_context, message_for_participants))
result = {'result': 'submission recorded'}
result['score_mu'] = submission.score
result['score_sigma'] = submission.score_secondary
_update_job_event(
_context,
job_complete_template(
_context,
result
)
)
def job_execution_wrapper(data):
redis_conn = redis.Redis(connection_pool=POOL)
job = get_current_job()
_context = {}
_context['redis_conn'] = redis_conn
_context['response_channel'] = data['broker_response_channel']
_context['job_id'] = job.id
_context['data_sequence_no'] = data['data_sequence_no']
_context['api_key'] = data['extra_params']['api_key']
# Register Job Running event
_update_job_event(
_context,
job_running_template(
_context['data_sequence_no'], job.id))
result = {}
try:
if data["function_name"] == "grade_submission":
grade_submission(data["data"], _context)
else:
_error_object = job_error_template(
job.id, "Function not implemented error")
_update_job_event(
_context, job_error_template(job.id, result))
result = _error_object
except Exception as e:
_error_object = job_error_template(
_context['data_sequence_no'],
job.id,
str(e))
_update_job_event(_context, _error_object)
return result