Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

Commit

Permalink
Update callbacks.py
Browse files Browse the repository at this point in the history
hot-fix of neptune _channels access.
  • Loading branch information
jakubczakon authored Mar 14, 2018
1 parent b178935 commit c5e65b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steps/keras/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def on_epoch_end(self, epoch, logs={}):


def get_correct_channel_name(ctx, name):
channels_with_name = [channel for channel in ctx.job._channels if name in channel.name]
channels_with_name = [channel for channel in ctx._experiment._channels if name in channel.name]
if len(channels_with_name) == 0:
return name
else:
Expand Down

0 comments on commit c5e65b2

Please sign in to comment.