Asim Waheed
Asim Waheed
Hi, I am trying to run the end-to-end confidential pytorch example from [this tutorial](https://gramine.readthedocs.io/en/latest/tutorials/pytorch/index.html#prerequisites). I was able to run the non-confidential part of the tutorial using gramine-sgx, but I am...
I plan on using the trigger set for an open-source project. However, I cannot find any information in this repo about the source of those images. Can you provide some...
https://github.com/cleverhans-lab/cleverhans/blob/574efc1d2f5c7e102c78cf0e937654e847267522/cleverhans/torch/attacks/projected_gradient_descent.py#L152C1-L153C1 I'm using the following code: ``` for x, y in self.test_loader: x, y = x.to(self.device), y.to(self.device) x_pgd = projected_gradient_descent( self.model, x, self.epsilon, self.step_size, self.iterations, np.inf, clip_min=self.clip_min, clip_max=self.clip_max, ) adv_input.append(x_pgd.detach().cpu().numpy())...
I tried running the quick tour to test the library, and it doesn't seem to work. ## Steps to replicate ### Installation Environment setup: ```bash conda create -n robustbench conda...