-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# N-MNIST | ||
python dynamic.py --dataset mnist --cupy --epochs 10 --train_epochs 1 --alpha 0.5 --beta 0.01 | ||
|
||
# CIFAR-10 | ||
python dynamic.py --dataset cifar10 --cupy --epochs 28 --train_epochs 1 --alpha 0.5 --beta 0.01 | ||
|
||
# Gesture | ||
python dynamic.py --dataset gesture --cupy --epochs 64 --train_epochs 1 --alpha 0.5 --beta 0.01 | ||
|
||
# Caltech-101 | ||
python dynamic.py --dataset caltech --cupy --epochs 30 --train_epochs 1 --alpha 0.5 --beta 0.01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# N-MNIST | ||
python main.py --dataset mnist --polarity 1 --pos top-left --trigger_size 0.1 --epsilon 0.1 --type moving --cupy --epochs 10 | ||
|
||
# CIFAR-10 | ||
python main.py --dataset cifar10 --polarity 1 --pos top-left --trigger_size 0.1 --epsilon 0.1 --type moving --cupy --epochs 28 | ||
|
||
# Gesture | ||
python main.py --dataset gesture --polarity 1 --pos top-left --trigger_size 0.1 --epsilon 0.1 --type moving --cupy --epochs 64 | ||
|
||
# Caltech-101 | ||
python main.py --dataset caltech --polarity 1 --pos top-left --trigger_size 0.1 --epsilon 0.1 --type moving --cupy --epochs 30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# N-MNIST | ||
python main.py --dataset mnist --n_masks 2 --trigger_size 0.1 --epsilon 0.1 --type smart --cupy --epochs 10 | ||
|
||
# CIFAR-10 | ||
python main.py --dataset cifar10 --n_masks 2 --trigger_size 0.1 --epsilon 0.1 --type smart --cupy --epochs 28 | ||
|
||
# Gesture | ||
python main.py --dataset gesture --n_masks 2 --trigger_size 0.1 --epsilon 0.1 --type smart --cupy --epochs 64 | ||
|
||
# Caltech-101 | ||
python main.py --dataset caltech --n_masks 2 --trigger_size 0.1 --epsilon 0.1 --type smart --cupy --epochs 30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# N-MNIST | ||
python main.py --dataset mnist --polarity 1 --pos top-left --trigger_size 0.1 --epsilon 0.1 --type static --cupy --epochs 10 | ||
|
||
# CIFAR-10 | ||
python main.py --dataset cifar10 --polarity 1 --pos top-left --trigger_size 0.1 --epsilon 0.1 --type static --cupy --epochs 28 | ||
|
||
# Gesture | ||
python main.py --dataset gesture --polarity 1 --pos top-left --trigger_size 0.1 --epsilon 0.1 --type static --cupy --epochs 64 | ||
|
||
# Caltech-101 | ||
python main.py --dataset caltech --polarity 1 --pos top-left --trigger_size 0.1 --epsilon 0.1 --type static --cupy --epochs 30 |