diff options
author | andreas128 <Andreas> | 2017-09-29 20:20:41 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-09-29 20:20:41 +0200 |
commit | 164b580166e439c6aa35c9b1cf8ee00458fa8841 (patch) | |
tree | 0073e691e788d1367a002e0b4625497cd44dfd12 | |
parent | d8e08207fa5fded6dd76782237cf214d6bfe4131 (diff) | |
download | dabmod-164b580166e439c6aa35c9b1cf8ee00458fa8841.tar.gz dabmod-164b580166e439c6aa35c9b1cf8ee00458fa8841.tar.bz2 dabmod-164b580166e439c6aa35c9b1cf8ee00458fa8841.zip |
Change default number of iterations to 10
-rwxr-xr-x | dpd/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpd/main.py b/dpd/main.py index b2f930a..d2ed453 100755 --- a/dpd/main.py +++ b/dpd/main.py @@ -51,7 +51,7 @@ parser.add_argument('--target_median', default=0.05, parser.add_argument('--samps', default='81920', type=int, help='Number of samples to request from ODR-DabMod', required=False) -parser.add_argument('-i', '--iterations', default=1, type=int, +parser.add_argument('-i', '--iterations', default=10, type=int, help='Number of iterations to run', required=False) parser.add_argument('-L', '--lut', |