Skip to content

Commit

Permalink
fix missing reg param
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Oct 24, 2024
1 parent d3af56f commit 754d4f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codex/models/HPF.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ def default():
return HPF(50)


def from_config(features, regularization):
return HPF(features, regularization=regularization)
def from_config(features):
return HPF(features)

0 comments on commit 754d4f0

Please sign in to comment.