Skip to content

Commit

Permalink
Merge pull request #14 from Syler1984/b_shift_10_ms
Browse files Browse the repository at this point in the history
Change shift to 10 ms
  • Loading branch information
jamm1985 authored Oct 12, 2021
2 parents 7752c4f + 9f1fefb commit 9c2b85b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ threshold string format: *"[label:threshold],..."*
<br>`--trace-size` VALUE Length of loaded and processed seismic data stream, default: 600 seconds
<br>`--batch-size` VALUE - model batch size, default: 150 slices
(generally each slice is: 4 seconds by 3 channels)
<br>`--shift` VALUE - sliding window shift in samples, default: *40* milliseconds. Increase in
<br>`--shift` VALUE - sliding window shift in samples, default: *10* milliseconds. Increase in
value will produce faster results, but with potential loss of prediction accuracy. Values above
*200* are not recommended.
<br>`--no-filter` - Do not filter input waveforms
Expand Down
2 changes: 1 addition & 1 deletion archive_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
default = 150)
parser.add_argument('--trace-size', '-b', help = 'Length of loaded and processed seismic data stream, '
'default: 600 seconds', default = 600)
parser.add_argument('--shift', help = 'Sliding windows shift, default: 40 samples (40 ms)', default = 40)
parser.add_argument('--shift', help = 'Sliding windows shift, default: 10 samples (10 ms)', default = 10)
parser.add_argument('--no-filter', help = 'Do not filter input waveforms', action = 'store_true')
parser.add_argument('--no-detrend', help = 'Do not detrend input waveforms', action = 'store_true')
parser.add_argument('--plot-positives', help = 'Plot positives waveforms', action = 'store_true')
Expand Down

0 comments on commit 9c2b85b

Please sign in to comment.