Skip to content
Snippets Groups Projects
Commit 857caf1c authored by bbauvin's avatar bbauvin
Browse files

Shrinked fusion folder names

parent 02bd4734
No related branches found
No related tags found
No related merge requests found
......@@ -153,10 +153,10 @@ def getCLString(classificationKWARGS):
"""Used to get the classifier name as a string"""
if classificationKWARGS["fusionType"] == "LateFusion":
reducedClassifiersNames = [classifierName[:4] for classifierName in classificationKWARGS["classifiersNames"]]
return "Fusion-" + classificationKWARGS["fusionType"] + "-" + classificationKWARGS["fusionMethod"] + "-" + \
return "Fusion-" + "Late" + "-" + classificationKWARGS["fusionMethod"][:5] + "-" + \
"-".join(reducedClassifiersNames)
elif classificationKWARGS["fusionType"] == "EarlyFusion":
return "Fusion-" + classificationKWARGS["fusionType"] + "-" + classificationKWARGS["fusionMethod"] + "-" + \
return "Fusion-" + "Early" + "-" + classificationKWARGS["fusionMethod"][:5] + "-" + \
classificationKWARGS["classifiersNames"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment