-
Notifications
You must be signed in to change notification settings - Fork 4
/
snn_benchmark.sh
40 lines (37 loc) · 3.82 KB
/
snn_benchmark.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/bash
python snn_benchmark.py --encoding Poisson --neuron_model IF --update_rule PostPre
python snn_benchmark.py --encoding Poisson --neuron_model IF --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding Poisson --neuron_model IF --update_rule Hebbian
python snn_benchmark.py --encoding Poisson --neuron_model LIF --update_rule PostPre
python snn_benchmark.py --encoding Poisson --neuron_model LIF --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding Poisson --neuron_model LIF --update_rule Hebbian
python snn_benchmark.py --encoding Poisson --neuron_model SRM0 --update_rule PostPre
python snn_benchmark.py --encoding Poisson --neuron_model SRM0 --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding Poisson --neuron_model SRM0 --update_rule Hebbian
python snn_benchmark.py --encoding Poisson --neuron_model DiehlAndCook --update_rule PostPre
python snn_benchmark.py --encoding Poisson --neuron_model DiehlAndCook --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding Poisson --neuron_model DiehlAndCook --update_rule Hebbian
python snn_benchmark.py --encoding Bernoulli --neuron_model IF --update_rule PostPre
python snn_benchmark.py --encoding Bernoulli --neuron_model IF --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding Bernoulli --neuron_model IF --update_rule Hebbian
python snn_benchmark.py --encoding Bernoulli --neuron_model LIF --update_rule PostPre
python snn_benchmark.py --encoding Bernoulli --neuron_model LIF --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding Bernoulli --neuron_model LIF --update_rule Hebbian
python snn_benchmark.py --encoding Bernoulli --neuron_model SRM0 --update_rule PostPre
python snn_benchmark.py --encoding Bernoulli --neuron_model SRM0 --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding Bernoulli --neuron_model SRM0 --update_rule Hebbian
python snn_benchmark.py --encoding Bernoulli --neuron_model DiehlAndCook --update_rule PostPre
python snn_benchmark.py --encoding Bernoulli --neuron_model DiehlAndCook --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding Bernoulli --neuron_model DiehlAndCook --update_rule Hebbian
python snn_benchmark.py --encoding RankOrder --neuron_model IF --update_rule PostPre
python snn_benchmark.py --encoding RankOrder --neuron_model IF --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding RankOrder --neuron_model IF --update_rule Hebbian
python snn_benchmark.py --encoding RankOrder --neuron_model LIF --update_rule PostPre
python snn_benchmark.py --encoding RankOrder --neuron_model LIF --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding RankOrder --neuron_model LIF --update_rule Hebbian
python snn_benchmark.py --encoding RankOrder --neuron_model SRM0 --update_rule PostPre
python snn_benchmark.py --encoding RankOrder --neuron_model SRM0 --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding RankOrder --neuron_model SRM0 --update_rule Hebbian
python snn_benchmark.py --encoding RankOrder --neuron_model DiehlAndCook --update_rule PostPre
python snn_benchmark.py --encoding RankOrder --neuron_model DiehlAndCook --update_rule WeightDependentPostPre
python snn_benchmark.py --encoding RankOrder --neuron_model DiehlAndCook --update_rule Hebbian