Skip to content
Snippets Groups Projects
Commit 68a5c3c1 authored by bbauvin's avatar bbauvin
Browse files

debugging

parent a9c1b18a
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,6 @@ class Fusion: ...@@ -64,7 +64,6 @@ class Fusion:
fusionMethodClass = getattr(fusionMethodModule, fusionMethod) fusionMethodClass = getattr(fusionMethodModule, fusionMethod)
nbCores = NB_CORES nbCores = NB_CORES
classifierKWARGS = dict((key, value) for key, value in kwargs.iteritems() if key not in ['fusionType', 'fusionMethod']) classifierKWARGS = dict((key, value) for key, value in kwargs.iteritems() if key not in ['fusionType', 'fusionMethod'])
print classifierKWARGS
self.classifier = fusionMethodClass(NB_CORES=nbCores, **classifierKWARGS) self.classifier = fusionMethodClass(NB_CORES=nbCores, **classifierKWARGS)
def fit_hdf5(self, DATASET, trainIndices=None, viewsIndices=None): def fit_hdf5(self, DATASET, trainIndices=None, viewsIndices=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment