In [1]:
%cd ~/NetBeansProjects/ExpLosion/
from notebooks.common_imports import *
from gui.output_utils import *
sns.timeseries.algo.bootstrap = my_bootstrap
sns.categorical.bootstrap = my_bootstrap
In [2]:
ids = Experiment.objects.filter(labelled__in=['movie-reviews-tagged', 'aclImdb-tagged'],
clusters__isnull=False).values_list('id', flat=True)
print(ids)
df = dataframe_from_exp_ids(ids, {'id':'id',
'labelled': 'labelled',
'algo': 'clusters__vectors__algorithm',
'unlab': 'clusters__vectors__unlabelled',
'num_cl': 'clusters__num_clusters'}).convert_objects(convert_numeric=True)
performance_table(df)
Out[2]:
In [ ]: