Jongchan Park
Jongchan Park
@byronwwang Not sure if you can understand Chinese, the reason is analyzed [here](http://www.cnblogs.com/darkknightzh/p/6015990.html). The problem seems to come from converting **nn** type batch norm to **cudnn** type batch norm. Initialized...
@shahabty @DiegoOrtego Hi, I am also trying to reproduce the result, but with ResNet50. Thanks to your shared parameters, I will run the algorithm with the following parameters. I have...
I am also training with fine dataset only! I am running with 4 Titan Black, so I am lucky to keep the batch size as 16. I think I can...
Thank you for your nice code :D @ZijunDeng. PS. Because I have to run two experiments at the same time, the batch size will be reduced to 8.. I will...
I faced the same problem when using tensorflow 1.0.0. But after using 1.0.0-rc0-gpu installed with Docker, the segfault is gone. (now I have other issues, but at lease segfault is...
In my case, this error occurs when there is no gt box. (I am using a custom dataset) Removing such samples from the dataset fixed the problem.
Change the starting of eval_multipro.py as, then it should work. I use Ubuntu 16.04 and PyTorch 1.0.1 ``` # System libs import os from tqdm import tqdm import datetime import...
@yxgeee I think it is the correct setting for VisDA2017. Not sure about the Office-31
``` python train.py -a=wideresnet -m=baseline -o=adam -b=225 --dataset=cifar10_zca --gpu=6,7 --lr=0.003 --boundary=0 ``` ``` Epoch: [1199][0/18] Time 0.677 (0.677) Data 0.580 (0.580) Loss 0.0085 (0.0085) Prec@1 99.556 (99.556) Prec@5 100.000 (100.000)...
WRN-28-2 (not 3!) @heitorrapela Just got the result over the weekend. Mean Teacher ``` python train.py -a=wideresnet -m=mt -o=adam -b=225 --dataset=cifar10_zca --gpu=6,7 --lr=0.0004 --boundary=0 ``` Last log ``` Learning rate...