Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mmap_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from IPython.parallel import interactive
from ipyparallel import interactive


@interactive
Expand Down
6 changes: 3 additions & 3 deletions model_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from collections import namedtuple
import os

from IPython.parallel import interactive
from IPython.parallel import TaskAborted
from ipyparallel import interactive
from ipyparallel import TaskAborted
from scipy.stats import sem
import numpy as np

Expand Down Expand Up @@ -203,7 +203,7 @@ def __repr__(self):

def boxplot_parameters(self, display_train=False):
"""Plot boxplot for each parameters independently"""
import pylab as pl
import matplotlib.pyplot as pl
results = [Evaluation(*task.get())
for task_group in self.task_groups
for task in task_group
Expand Down
Loading