Skip to content

Commit

Permalink
Fix comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmontiel committed Nov 15, 2018
1 parent 642aed8 commit 1a891d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/skmultiflow/visualization/evaluation_visualizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def on_new_train_step(self, sample_id, data_buffer):
self._update_plots(sample_id, data_buffer)

# To mitigate re-drawing overhead for fast models use frame counter (default = 5 frames).
# To avoid slow refresh rate in slow models use a time limit (default = .1 sec).
# To avoid slow refresh rate in slow models use a time limit (default = 1 sec).
if (self._frame_cnt == 5) or (current_time - self._last_draw_timestamp > 1):
plt.subplots_adjust(right=0.72, bottom=0.22) # Adjust subplots to include metrics annotations
if get_backend() == 'nbAgg':
Expand Down

0 comments on commit 1a891d7

Please sign in to comment.