Skip to content

Commit

Permalink
Change default loss_report_frequency for ParametricUMAP
Browse files Browse the repository at this point in the history
The docs of ParametricUMAP claim a loss_report_frequency of 1, but the parameter is 10 by default. This PR changes the value of the parameter to match the docs.
  • Loading branch information
bogdanteleaga committed Dec 2, 2020
1 parent 8b03c48 commit 5a07220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umap/parametric_umap.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(
parametric_reconstruction=False,
autoencoder_loss=False,
reconstruction_validation=None,
loss_report_frequency=10,
loss_report_frequency=1,
n_training_epochs=1,
keras_fit_kwargs={},
**kwargs
Expand Down

0 comments on commit 5a07220

Please sign in to comment.