Skip to content

Commit

Permalink
made example integration test work by storing everything including th…
Browse files Browse the repository at this point in the history
…e now serialisable multiclass labels
  • Loading branch information
karlnapf committed Mar 14, 2013
1 parent ea53122 commit 68e1b97
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -72,7 +72,7 @@ def evaluation_clustering (features=fea, ground_truth=gnd_raw, ncenters=10):
mutual_info = MIEval.evaluate(gnd_hat, gnd)
#print(('Clustering mutual information = %.4f' % mutual_info))

return gnd, accuracy, mutual_info
return gnd, gnd_hat, accuracy, MIEval, mutual_info

if __name__ == '__main__':
print('Evaluation Clustering')
Expand Down

0 comments on commit 68e1b97

Please sign in to comment.