11from ..utils import DataikuException
22from ..utils import DataikuUTF8CSVReader
33from ..utils import DataikuStreamedHttpUTF8CSVReader
4- from ..utils import DSSExtendableDict
4+ from ..utils import DSSExtensibleDict
55import json
66import time
77from .metrics import ComputedMetrics
@@ -722,7 +722,7 @@ def get_partial_dependencies(self):
722722 return DSSPartialDependencies (data )
723723
724724
725- class DSSSubpopulationModality (DSSExtendableDict ):
725+ class DSSSubpopulationModality (DSSExtensibleDict ):
726726 """
727727 Object to read details of a subpopulation analysis modality
728728
@@ -804,7 +804,7 @@ def contains(self, value):
804804 return value == self .value
805805
806806
807- class DSSSubpopulationAnalysis (DSSExtendableDict ):
807+ class DSSSubpopulationAnalysis (DSSExtensibleDict ):
808808 """
809809 Object to read details of a subpopulation analysis of a trained model
810810
@@ -871,7 +871,7 @@ def get_raw(self):
871871 return self .internal_dict
872872
873873
874- class DSSSubpopulationAnalyses (DSSExtendableDict ):
874+ class DSSSubpopulationAnalyses (DSSExtensibleDict ):
875875 """
876876 Object to read details of subpopulation analyses of a trained model
877877
@@ -912,7 +912,7 @@ def get_analysis(self, feature):
912912 raise ValueError ("Subpopulation analysis for feature '%s' cannot be found" % feature )
913913
914914
915- class DSSPartialDependence (DSSExtendableDict ):
915+ class DSSPartialDependence (DSSExtensibleDict ):
916916 """
917917 Object to read details of partial dependence of a trained model
918918
@@ -939,7 +939,7 @@ def get_raw(self):
939939 return self .internal_dict
940940
941941
942- class DSSPartialDependencies (DSSExtendableDict ):
942+ class DSSPartialDependencies (DSSExtensibleDict ):
943943 """
944944 Object to read details of partial dependencies of a trained model
945945
0 commit comments