Searched refs:truth_values (Results 1 – 5 of 5) sorted by relevance
/third_party/mindspore/tests/st/ops/ascend/ |
D | test_edit_distance.py | 33 def construct(self, hypothesis_indices, hypothesis_values, truth_indices, truth_values): argument 35 truth_indices, truth_values, self.truth_shape) 44 truth_values = Tensor(t2.astype(np.int64)) 47 out = edit_distance(hypothesis_indices, hypothesis_values, truth_indices, truth_values)
|
/third_party/mindspore/mindspore/ccsrc/transform/graph_ir/op_declare/ |
D | array_ops_declare.cc | 102 {5, INPUT_DESC(truth_values)}, {6, INPUT_DESC(truth_shape)}};
|
/third_party/mindspore/mindspore/ops/operations/ |
D | array_ops.py | 5714 def __infer__(self, h_indices, h_values, h_shape, truth_indices, truth_values, truth_shape): argument 5720 args = {"hypothesis_values": h_values['dtype'], "truth_values": truth_values['dtype']} 5728 … validator.check("truth_values rank", len(truth_values['shape']), "expected", 1, Rel.EQ, self.name) 5734 validator.check("truth_values shape", truth_values['shape'][0],
|
/third_party/mindspore/tests/ut/python/ops/ |
D | test_ops.py | 1013 def construct(self, hypothesis_indices, hypothesis_values, truth_indices, truth_values): argument 1015 truth_indices, truth_values, self.truth_shape)
|
/third_party/mindspore/config/ |
D | op_info.config | 10 …e": "truth_indices", "param_type": "required"}, {"index": 4, "name": "truth_values", "param_type":…
|