Hi!
Thanks for the nice work.
I want to use the three approaches used here for comparison in my own pipeline.
What I do is that
- Train a model on my poisoned data.
- Evaluate the feature space representation of the training data using the trained model (ResNet-32, so it would be the output of the 'layer3' below).
|
self.layer3 = self._make_layer(block, 64, num_blocks[2], stride=2) |
.
- Then, I use your Julia code to compute the samples that need to be removed for the target label.
Am I right? Because I am getting a mixed performance and I want to double check.
Hi!
Thanks for the nice work.
I want to use the three approaches used here for comparison in my own pipeline.
What I do is that
spectre-defense/resnet.py
Line 112 in ccf594a
Am I right? Because I am getting a mixed performance and I want to double check.