Dang Nguyen
Dang Nguyen
The original code produces an additional redundant batch when the number of data samples is divisible by the batch size.
I kept running into this error when trying to use RexNet. ``` Traceback (most recent call last): File "main.py", line 91, in blackbox_success_rates = evaluate(clipped_advs, targets, blackbox_models, model_loader, epsilons, args.device)...
I encountered this strange error. Here is the output ``` $ python main.py 2020-10-17 06:19:37,971:INFO::[*] Make directories : logs/ptb_2020-10-17_06-19-37 2020-10-17 06:19:45,686:INFO::regularizing: 2020-10-17 06:19:56,858:INFO::# of parameters: 146,014,000 2020-10-17 06:19:57,208:INFO::[*] MODEL dir:...
I got 404 Not Found when tried to download the pretrain model from: http://sato-motoki.com/research/vat/imdb_pretrained_lm.model This is my output: ``` wget http://sato-motoki.com/research/vat/imdb_pretrained_lm.model --2020-09-01 16:52:54-- http://sato-motoki.com/research/vat/imdb_pretrained_lm.model Resolving sato-motoki.com (sato-motoki.com)... 185.199.109.153, 185.199.111.153, 185.199.108.153,...
I'm using this RBF implementation to train on top of an CuDNNLSTM with GPU. However, I got a tremendous decrease in performance when compare to training the CuDNNLSTM alone. My...