Skip to content

Commit

Permalink
Fix logger name
Browse files Browse the repository at this point in the history
  • Loading branch information
louisPoulain authored Nov 8, 2024
1 parent 943e306 commit 868380f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlpp_lib/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_probabilistic_layer(
probabilistic_layer_options = {}

if hasattr(probabilistic_layers, probabilistic_layer_name):
LOGGER.info(f"Using custom probabilistic layer: {probabilistic_layer_name}")
_LOGGER.info(f"Using custom probabilistic layer: {probabilistic_layer_name}")
probabilistic_layer_obj = getattr(probabilistic_layers, probabilistic_layer_name)
n_params = getattr(probabilistic_layers, probabilistic_layer_name).param_size(output_size)
probabilistic_layer = (
Expand Down

0 comments on commit 868380f

Please sign in to comment.