Discussion

Home     Discussion Board      Short Video Understanding Challenge      baseline中shifts列表中的数字的含义

llww

baseline中shifts列表中的数字的含义

posted in   Short Video Understanding Challenge

2019-02-01 08:19

23  comments

Bytedance Staff

Bytedance Organizer

liweijian

2019-02-01 09:55

Reply

0
<p>各个特征的长度</p>

baituhuangyu

2019-02-23 04:41

Reply

0
<p>class PosShifts(object):<br> “””<br> Position shifts will be caused by different fields,<br> thus, we need to take it into our consideration.<br> This class is used for removing position shifts<br> “””</p> <p> <em>shifts = []<br> def <em>_init</em></em>(self, track):<br> PosShifts._track = track<br> if track == 1:<br> PosShifts._shifts = [663011, 0, 31180492, 15595718, 410, 6]<br> elif track == 2:<br> PosShifts._shifts = [73974, 396, 4122689, 850308, 461, 5]<br> else:<br> raise Exception(“unknown track”, track)</p> <p>这段代码啥意思呢?_shifts能修改吗? 啥track 时候用2啥时候用1,是赛道1用1吗?赛道2用2吗?</p>