Skip to content

Commit

Permalink
fix: default func_preprocess set to None
Browse files Browse the repository at this point in the history
  • Loading branch information
yiitozer committed Mar 20, 2024
1 parent ae6f64a commit 7144f27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libnmfd/core/nmfconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def nmfd(V: np.ndarray,
num_template_frames: int = 8,
init_W: np.ndarray = None,
init_H: np.ndarray = None,
func_preprocess=drum_specific_soft_constraints_nmf,
func_preprocess=None,
func_postprocess=None,
fix_W: bool = False,
fix_H: bool = False,
Expand Down Expand Up @@ -212,7 +212,7 @@ def nmfd(V: np.ndarray,
fix_H: bool
TODO
func_preprocess: function
func_preprocess: function, default=None
Call for preprocessing
func_postprocess: function
Expand Down

0 comments on commit 7144f27

Please sign in to comment.