-
@Qidian213 你好, nwojke的deep_sort中使用cosine-softmax分类器,你提到的Triplet Loss with hard negative mining 是nwojke在他的论文中提到的 triplet loss.方式吗
-
change Hard Negative Mining in multibox_loss.py (line 101) from
`loss_c[pos] = 0`
to
`loss_c[pos.view(-1, 1)] = 0`
Then change
` loss_l /= N
loss_c /= N`
in the same file to
…
-
ayers/modules/multibox_loss.py
# Hard Negative Mining
loss_c[pos] = 0 # filter out pos boxes for now
loss_c = loss_c.view(num, -1)
should be as
loss_c = loss…
-
Thanks a lot for releasing the code and the scripts for pre-training.
I'm trying to reproduce the numbers on MS-Marco after fine-tuning and it would be great if you could also release the scripts f…
-
Hi,
Thank u for your implementation of n-pair loss. It helps me a lot. But, I have a question about the operation before computing the loss. Would u mind giving me a expaination ?
My e-ma…
FanQC updated
6 years ago
-
We are running several coins running successfully however our Darkcoin stats never reset after we solve a block like the other coins. For a while we were on a bad chain back when it forked so when we …
-
The original model used balanced-cross entropy loss. However, your model didn't use it and performs well. I guess it's because your code does some kind of hard negative mining in the preprocessing sta…
-
论文中, L= L_s + 1.0 * L_B + 10 * L_t , 我仔细研读了代码, 其中的设置为 L = 5*L_s + 10*L_t + L_B, 这个权重的设置怎么解释呢。 而且 L_s 和L_B的实现也不一样, 论文中的意思是两个都采用hard negative mining is used in the BCE loss by sampling the hard …
-
Sorry it's not the key point of your paper.
After succesfully getting result of your batch hard loss function. I tried to check the result of lifted loss.
When I use the euclidean distance, the dist…
-
Good day. I have a YouTube, instagram and tiktok channel. If I upload videos from my channels to d.tube in the form of links to the videos themselves, will there be any sanctions from these social net…