Skip to content

Commit

Permalink
Fix experiment object attribute error
Browse files Browse the repository at this point in the history
Fix concat_experiments_on_channel not using Neptune API to get experiments' channels. Since experiment object don't have an accessible 'channels' atribute.
  • Loading branch information
lmlima authored and pitercl committed Sep 23, 2019
1 parent f82e921 commit 530297f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neptunecontrib/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def concat_experiments_on_channel(experiments, channel_name):
"""
combined_df = []
for experiment in experiments:
if channel_name in experiment.channels.keys():
if channel_name in experiment.get_channels().keys():
channel_df = experiment.get_numeric_channels_values(channel_name)
channel_df['id'] = experiment.id
combined_df.append(channel_df)
Expand Down

0 comments on commit 530297f

Please sign in to comment.