headscott
headscott
I found a problem in tls_parse_verify_tls13: the second CHECK_SIZE always runs into TLS_NEED_MORE_DATA because, you just need 3 + size bytes, not 7 + size at this point. When I...
I encountered a problem in the function tls_certificate_set_copy: you set (*member)[len] = 0; but by that you overwrite the seconds of the validity you wanted to save. It should be...
Hey, I am currently training your model by executing `bash sh/train_lbgat0_cifar100.sh`. I did not see any progress prints until now. Are there even any, if so, can I make them...
I trained a RaResNet50, by using `make experiments/RaResNet50/.done_train` Afterwards, I wanted to evaluate it with `make experiments/RaResNet50/.done_test_pgd`, but it gave me this error: ``` Error executing job with overrides: ['train_test=test',...
I saw on [RobustBench](https://robustbench.github.io/) that there is a RaWideResNet-101-2 from here. But when I look at your Makefile, I can train a RaWRN101_2 via `make experiments/RaWRN101_2/.done_train`, but I cannot evaluate...
Shouldn't all of the Standard PGD AT make commands contain `PGDAR_RaResNet50 `as the name? Because, I had to do `resize.py` (step 4 of the other github which is mentioned in...
I am new to all that AI training. And I want to train your model with `make experiments/RaResNet50/.done_train` First, I got access to ImageNet. But which of all of these...
When I run `python train_lbgat_cifar100.py -mark cifar100_lbgat0_0.031 -teacher_model ResNet18_cifar --beta 0` will the model be trained with ALP or TRADES? If not, how can I activate it?
Hello, I have written a bachelor's thesis on the sustainability of (adversarial) training and inference. As part of my research, I trained your model, among others, multiple times—sometimes with modifications....
In your paper I saw, that you used Softmax, but I can't find it in your code. I only see ReLu. Did I unsterstand that wrong, or don't you even...