Woody. Wang

Results 1 issues of Woody. Wang

This is the dropout function in `utils.py`: ``` def drop_path(x, drop_prob): if drop_prob > 0.: keep_prob = 1.-drop_prob mask = Variable(torch.cuda.FloatTensor(x.size(0), 1, 1, 1).bernoulli_(keep_prob)) x.div_(keep_prob) x.mul_(mask) return x ``` Question:...