We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10aa6f commit 75a755eCopy full SHA for 75a755e
dataikuapi/dss/ml.py
@@ -687,6 +687,15 @@ def get_assertion(self, assertion_name):
687
return DSSMLAssertionParams(assertion_dict)
688
return None
689
690
+ def get_assertions_names(self):
691
+ """
692
+ Gets the list of all assertion's names
693
+
694
+ :return: A list of all assertion's names
695
+ :rtype: list
696
697
+ return [assertion_dict["name"] for assertion_dict in self._internal_dict["assertions"]]
698
699
def add_assertion(self, assertion_params):
700
"""
701
Adds parameters of an assertion to the assertions parameters of the ml task.
0 commit comments