Skip to content

Commit

Permalink
Ryan transient testing (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruxandra-valcu authored Dec 13, 2023
1 parent defe1f6 commit 2dd54b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions echopype/clean/transient_noise.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@

RYAN_DEFAULT_PARAMS = {
"m": 5,
"n": 5,
"n": 20,
"thr": 20,
"excludeabove": 250,
"operation": "mean",
"operation": "median",
"dask_chunking": {"ping_time": 100, "range_sample": 100},
}
FIELDING_DEFAULT_PARAMS = {
Expand Down
2 changes: 1 addition & 1 deletion echopype/tests/clean/test_clean_transient_noise.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@pytest.mark.parametrize(
"method, parameters ,expected_true_false_counts",
[
("ryan", RYAN_DEFAULT_PARAMS, (2115052, 51879)),
("ryan", RYAN_DEFAULT_PARAMS, (1984803, 182128)),
("fielding", FIELDING_DEFAULT_PARAMS, (2117333, 49598)),
],
)
Expand Down

0 comments on commit 2dd54b1

Please sign in to comment.