MCPcopy
hub / github.com/hyperopt/hyperopt / count_failed_trials

Method count_failed_trials

hyperopt/spark.py:155–159  ·  view source on GitHub ↗

Returns the current number of trial runs which failed

(self)

Source from the content-addressed store, hash-verified

153 return self.count_by_state_unsynced(base.JOB_STATE_DONE)
154
155 def count_failed_trials(self):
156 """
157 Returns the current number of trial runs which failed
158 """
159 return self.count_by_state_unsynced(base.JOB_STATE_ERROR)
160
161 def count_cancelled_trials(self):
162 """

Callers 3

fminMethod · 0.95
check_run_statusMethod · 0.80

Calls 1

Tested by 2

check_run_statusMethod · 0.64