Skip to content

Commit

Permalink
added the generic folders for code that is framework independent (e.g…
Browse files Browse the repository at this point in the history
…., uses only the numpy library) or can support all major deep leanring libraries
  • Loading branch information
adam-dziedzic committed Sep 23, 2021
1 parent 95d5bc9 commit e5d00e5
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 4 deletions.
5 changes: 5 additions & 0 deletions cleverhans/generic/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Generic Code (framework independent)

This folder contains code that is framework independent (for example, it uses
the numpy library only or can handle support for all major deep learning
libraries).
Empty file added cleverhans/generic/__init__.py
Empty file.
9 changes: 5 additions & 4 deletions defenses/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Defenses

This folder contains implementations of defenses (as standalone scripts) in one
of the three frameworks (JAX, PyTorch, TF2). Each defense should be implemented
as a script that helps reproduce results reported in the paper introducing the
defense. The goal is for these scripts to be authoritative ways to reproduce
the defense.
of the three frameworks (JAX, PyTorch, TF2) or if it is framework independent
then this code should go to the generic folder. Each defense should be
implemented as a script that helps reproduce results reported in the paper
introducing the defense. The goal is for these scripts to be authoritative ways
to reproduce the defense.
5 changes: 5 additions & 0 deletions defenses/generic/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Generic Defenses (framework independent)

This folder contains implementations of defenses (as standalone scripts) that
are implemented in a framework independent way (for example, it uses the numpy
library only or can handle support for all major deep learning libraries).
Empty file added defenses/generic/__init__.py
Empty file.
5 changes: 5 additions & 0 deletions tutorials/generic/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Tutorials for framework independent features

This folder contains implementations of features that are implemented in a
framework independent way (for example, it uses the numpy library only or can
handle support for all major deep learning libraries).
Empty file added tutorials/generic/__init__.py
Empty file.

0 comments on commit e5d00e5

Please sign in to comment.