-
Notifications
You must be signed in to change notification settings - Fork 3
/
models.py
317 lines (261 loc) · 10.8 KB
/
models.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
import turkic.database
import turkic.models
from sqlalchemy import Column, Integer, Float, String, Boolean, Text
from sqlalchemy import ForeignKey, Table, PickleType
from sqlalchemy.orm import relationship, backref
import Image
import vision
from vision.track.interpolation import LinearFill
import random
import logging
import config
logger = logging.getLogger("vatic.models")
boxes_attributes = Table("boxes2attributes", turkic.database.Base.metadata,
Column("box_id", Integer, ForeignKey("boxes.id")),
Column("attribute_id", Integer, ForeignKey("attributes.id")))
class Video(turkic.database.Base):
__tablename__ = "videos"
id = Column(Integer, primary_key = True)
slug = Column(String(250), index = True)
width = Column(Integer)
height = Column(Integer)
totalframes = Column(Integer)
location = Column(String(250))
skip = Column(Integer, default = 0, nullable = False)
perobjectbonus = Column(Float, default = 0)
completionbonus = Column(Float, default = 0)
trainwithid = Column(Integer, ForeignKey(id))
trainwith = relationship("Video", remote_side = id)
isfortraining = Column(Boolean, default = False)
trainvalidator = Column(PickleType, nullable = True, default = None)
blowradius = Column(Integer, default = 5)
def __getitem__(self, frame):
path = Video.getframepath(frame, self.location)
return Image.open(path)
@classmethod
def getframepath(cls, frame, base = None):
l1 = frame / 10000
l2 = frame / 100
path = "{0}/{1}/{2}.jpg".format(l1, l2, frame)
if base is not None:
path = "{0}/{1}".format(base, path)
return path
@property
def cost(self):
cost = 0
for segment in self.segments:
cost += segment.cost
return cost
@property
def numjobs(self):
count = 0
for segment in self.segments:
for job in segment.jobs:
count += 1
return count
@property
def numcompleted(self):
count = 0
for segment in self.segments:
for job in segment.jobs:
if job.completed:
count += 1
return count
class Label(turkic.database.Base):
__tablename__ = "labels"
id = Column(Integer, primary_key = True)
text = Column(String(250))
videoid = Column(Integer, ForeignKey(Video.id))
video = relationship(Video, backref = backref("labels",
cascade = "all,delete"))
class Attribute(turkic.database.Base):
__tablename__ = "attributes"
id = Column(Integer, primary_key = True)
text = Column(String(250))
labelid = Column(Integer, ForeignKey(Label.id))
label = relationship(Label, backref = backref("attributes",
cascade = "all,delete"))
def __str__(self):
return self.text
class Segment(turkic.database.Base):
__tablename__ = "segments"
id = Column(Integer, primary_key = True)
videoid = Column(Integer, ForeignKey(Video.id))
video = relationship(Video, backref = backref("segments",
cascade = "all,delete"))
start = Column(Integer)
stop = Column(Integer)
@property
def paths(self):
paths = []
for job in self.jobs:
if job.useful:
paths.extend(job.paths)
return paths
@property
def cost(self):
cost = 0
for job in self.jobs:
cost += job.cost
return cost
class Job(turkic.models.HIT):
__tablename__ = "jobs"
__mapper_args__ = {"polymorphic_identity": "jobs"}
id = Column(Integer, ForeignKey(turkic.models.HIT.id),
primary_key = True)
segmentid = Column(Integer, ForeignKey(Segment.id))
segment = relationship(Segment,
backref = backref("jobs",
cascade = "all,delete"))
istraining = Column(Boolean, default = False)
def getpage(self):
return "?id={0}".format(self.id)
def markastraining(self):
"""
Marks this job as the result of a training run. This will automatically
swap this job over to the training video and produce a replacement.
"""
replacement = Job(segment = self.segment, group = self.group)
self.segment = self.segment.video.trainwith.segments[0]
self.group = self.segment.jobs[0].group
self.istraining = True
logger.debug("Job is now training and replacement built")
return replacement
def invalidate(self):
"""
Invalidates this path because it is poor work. The new job will be
respawned automatically for different workers to complete.
"""
self.useful = False
# is this a training task? if yes, we don't want to respawn
if not self.istraining:
return Job(segment = self.segment, group = self.group)
def check(self):
if len(self.paths) > config.maxobjects:
raise RuntimeError("Job {0} has too many objects to process "
"payment. Please verify this is not an "
"attempt to hack us and increase the "
"limit in config.py".format(self.id))
return True
@property
def trainingjob(self):
return self.segment.video.trainwith.segments[0].jobs[0]
@property
def validator(self):
return self.segment.video.trainvalidator
@property
def cost(self):
if not self.completed:
return 0
return self.bonusamount + self.group.cost + self.donatedamount
def __iter__(self):
return self.paths
class Path(turkic.database.Base):
__tablename__ = "paths"
id = Column(Integer, primary_key = True)
jobid = Column(Integer, ForeignKey(Job.id))
job = relationship(Job, backref = backref("paths", cascade="all,delete"))
labelid = Column(Integer, ForeignKey(Label.id))
label = relationship(Label, cascade = "none", backref = "paths")
interpolatecache = None
def getboxes(self, interpolate = False, bind = False, label = False):
result = [x.getbox() for x in self.boxes]
result.sort(key = lambda x: x.frame)
if interpolate:
if not self.interpolatecache:
self.interpolatecache = LinearFill(result)
result = self.interpolatecache
if bind:
result = Path.bindattributes(self.attributes, result)
if label:
for box in result:
box.attributes.insert(0, self.label.text)
return result
@classmethod
def bindattributes(cls, attributes, boxes):
attributes = sorted(attributes, key = lambda x: x.frame)
byid = {}
for attribute in attributes:
if attribute.attributeid not in byid:
byid[attribute.attributeid] = []
byid[attribute.attributeid].append(attribute)
for attributes in byid.values():
for prev, cur in zip(attributes, attributes[1:]):
if prev.value:
for box in boxes:
if prev.frame <= box.frame < cur.frame:
if prev.attribute not in box.attributes:
box.attributes.append(prev.attribute)
last = attributes[-1]
if last.value:
for box in boxes:
if last.frame <= box.frame:
if last.attribute not in box.attributes:
box.attributes.append(last.attribute)
return boxes
def __repr__(self):
return "<Path {0}>".format(self.id)
class AttributeAnnotation(turkic.database.Base):
__tablename__ = "attribute_annotations"
id = Column(Integer, primary_key = True)
pathid = Column(Integer, ForeignKey(Path.id))
path = relationship(Path,
backref = backref("attributes",
cascade = "all,delete"))
attributeid = Column(Integer, ForeignKey(Attribute.id))
attribute = relationship(Attribute)
frame = Column(Integer)
value = Column(Boolean, default = False)
def __repr__(self):
return ("AttributeAnnotation(pathid = {0}, "
"attributeid = {1}, "
"frame = {2}, "
"value = {3})").format(self.pathid,
self.attributeid,
self.frame,
self.value)
class Box(turkic.database.Base):
__tablename__ = "boxes"
id = Column(Integer, primary_key = True)
pathid = Column(Integer, ForeignKey(Path.id))
path = relationship(Path,
backref = backref("boxes", cascade = "all,delete"))
xtl = Column(Integer)
ytl = Column(Integer)
xbr = Column(Integer)
ybr = Column(Integer)
frame = Column(Integer)
occluded = Column(Boolean, default = False)
outside = Column(Boolean, default = False)
def getbox(self):
return vision.Box(self.xtl, self.ytl, self.xbr, self.ybr,
self.frame, self.outside, self.occluded, 0)
class PerObjectBonus(turkic.models.BonusSchedule):
__tablename__ = "per_object_bonuses"
__mapper_args__ = {"polymorphic_identity": "per_object_bonuses"}
id = Column(Integer, ForeignKey(turkic.models.BonusSchedule.id),
primary_key = True)
amount = Column(Float, default = 0.0, nullable = False)
def description(self):
return (self.amount, "per object")
def award(self, hit):
paths = len(hit.paths)
amount = paths * self.amount
if amount > 0:
hit.awardbonus(amount, "For {0} objects".format(paths))
logger.debug("Awarded per-object bonus of ${0:.2f} for {1} paths"
.format(amount, paths))
else:
logger.debug("No award for per-object bonus because 0 paths")
class CompletionBonus(turkic.models.BonusSchedule):
__tablename__ = "completion_bonuses"
__mapper_args__ = {"polymorphic_identity": "completion_bonuses"}
id = Column(Integer, ForeignKey(turkic.models.BonusSchedule.id),
primary_key = True)
amount = Column(Float, default = 0.0, nullable = False)
def description(self):
return (self.amount, "if complete")
def award(self, hit):
hit.awardbonus(self.amount, "For complete annotation.")
logger.debug("Awarded completion bonus of ${0:.2f}"
.format(self.amount))