File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -672,6 +672,7 @@ def get_assertion(self, assertion_name):
672672 """
673673 Gets a :class:`DSSMLAssertionParams` representing the parameters of the assertion with the
674674 provided name (or None if no assertion has that name)
675+
675676 :param str assertion_name: Name of the assertion
676677 :rtype: :class:`DSSMLAssertionParams` or None if no assertion has that name
677678 """
@@ -683,6 +684,7 @@ def get_assertion(self, assertion_name):
683684 def add_assertion (self , assertion_params ):
684685 """
685686 Adds parameters of an assertion to the assertions parameters of the ml task.
687+
686688 :param object assertion_params: A :class:`DSSMLAssertionParams` representing parameters of the assertion
687689 """
688690 if not isinstance (assertion_params , DSSMLAssertionParams ):
@@ -694,6 +696,7 @@ def delete_assertion(self, assertion_name):
694696 """
695697 Deletes the assertion parameters of the assertion with the provided name from the assertions parameters of the ml task.
696698 Raises a ValueError if no assertion with the provided name was found
699+
697700 :param str assertion_name: Name of the assertion
698701 """
699702 for idx , assertion_dict in enumerate (self ._internal_dict ["assertions" ]):
You can’t perform that action at this time.
0 commit comments