You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am writing to you regarding an issue I have been facing while using the Counterfit framework. Firstly, I want to commend you on developing such a powerful tool to test the security robustness of models. Your efforts in creating this framework are much appreciated.
I have been trying to import a new model/target inside the Counterfit framework and although I have successfully added the model and predicted for an image, I cannot seem to use an attack on them. I have been following the instructions provided in the documentation and on your GitHub, but I have not been able to resolve the issue.
I use the the v1.1.0 version using the docker environment thanks of the Dockerfile in the repo. Here the model I try to import onto the framework :
So as said before, I have succeed to predict with the image send into the docker environnement; But when i try to do the hop skip jump attack I got this error :
You'll find attached the model used, just remove the .txt sigmanet.h5.txt
I have found it difficult to find additional resources online that could help me troubleshoot the problem. Most of the resources available seem to be outdated and do not provide enough guidance on how to solve this particular issue. I would really appreciate it if you could provide me with some guidance or assistance in resolving this issue. Is there any additional documentation or resources that I can refer to? Also, could you please provide me with some steps or guidelines on how to import a new model/target and use an attack on them?
The text was updated successfully, but these errors were encountered:
It's not an error. It is a failure of HSJ. The output means your target is written correctly and does work. The issue is with HSJ not being able to find an initial adversarial image.
Best advice I can give is to check the shapes are as you expect all the way through. Common errors come from incorrect batch sizes and/or channels being C, H, W vs H, W, C. This is especially true if predict works but an attack fails.
Hi all,
I am writing to you regarding an issue I have been facing while using the Counterfit framework. Firstly, I want to commend you on developing such a powerful tool to test the security robustness of models. Your efforts in creating this framework are much appreciated.
I have been trying to import a new model/target inside the Counterfit framework and although I have successfully added the model and predicted for an image, I cannot seem to use an attack on them. I have been following the instructions provided in the documentation and on your GitHub, but I have not been able to resolve the issue.
I use the the v1.1.0 version using the docker environment thanks of the Dockerfile in the repo. Here the model I try to import onto the framework :
I created a new CFTarget class to be able to use it into counterfit. Here the code :
So as said before, I have succeed to predict with the image send into the docker environnement; But when i try to do the hop skip jump attack I got this error :
You'll find attached the model used, just remove the .txt
sigmanet.h5.txt
I have found it difficult to find additional resources online that could help me troubleshoot the problem. Most of the resources available seem to be outdated and do not provide enough guidance on how to solve this particular issue. I would really appreciate it if you could provide me with some guidance or assistance in resolving this issue. Is there any additional documentation or resources that I can refer to? Also, could you please provide me with some steps or guidelines on how to import a new model/target and use an attack on them?
The text was updated successfully, but these errors were encountered: