Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition of Carlini-Wagner L2 Attack Algorithm #6

Open
mr-sarthakgupta opened this issue Oct 11, 2022 · 0 comments
Open

Addition of Carlini-Wagner L2 Attack Algorithm #6

mr-sarthakgupta opened this issue Oct 11, 2022 · 0 comments
Labels
enhancement New feature or request intermediate Difficulty Level

Comments

@mr-sarthakgupta
Copy link
Member

Addition of Carlini-Wagner L2 Attack Algorithm

Task - Implementation and setting up of Carlini-Wagner L2 Attack Algorithm in the source code and its deployment on the main website.

Difficulty Level : Intermediate

Steps to be followed -

  • Add the respective attack function to attack.py file.
  • The function should be of the following framework -
def cwl2(parameters):
	model body
	return dict()
  • Create the app-route python decorator for the algorithm in the app.py file.
  • The function should be of the following framework -
@app.route('/cwl2', methods=['GET'])
def cwl2():
    return render_template('cwl2.html')
  • Create the html template file (cwl2.html) for the respective algorithm in the template folder

Resources to be followed

@mr-sarthakgupta mr-sarthakgupta added enhancement New feature or request intermediate Difficulty Level labels Oct 11, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request intermediate Difficulty Level
Projects
None yet
Development

No branches or pull requests

1 participant