-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_examples.sh
More file actions
20 lines (10 loc) · 808 Bytes
/
run_examples.sh
File metadata and controls
20 lines (10 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
python3 src/estimate.py --param "lambda" --file "example_lambda_binary.csv"
python3 src/estimate.py --param "lambda" --file "example_lambda_binary.csv" --verify 1
python3 src/estimate.py --param "lambda" --n "1024" --logq "20-30;35;40-60" --secret "binary" --error "3.19"
python3 src/estimate.py --param "n" --lambda "80" --logq "20-30" --secret "binary" --error "3.19" --verify 1
python3 src/estimate.py --param "n" --file "example_n_ternary.csv"
python3 src/estimate.py --param "logq" --lambda "80" --n "1024" --secret "binary" --error "3.19"
python3 src/estimate.py --param "logq" --file "example_logq_binary.csv"
python3 src/estimate.py --param "std_e" --lambda "80" --n "1024" --logq "20" --secret "binary"
python3 src/estimate.py --param "std_e" --file "example_error_binary.csv"