Home
last modified time | relevance | path

Searched refs:_check_onehot_data (Results 1 – 6 of 6) sorted by relevance

/third_party/mindspore/mindspore/nn/metrics/
Dtopk.py80 if y_pred.ndim == y.ndim and self._check_onehot_data(y):
Daccuracy.py83 if self._type == 'classification' and y_pred.ndim == y.ndim and self._check_onehot_data(y):
Dfbeta.py79 if y_pred.ndim == y.ndim and self._check_onehot_data(y):
Dprecision.py97 if self._type == 'classification' and y_pred.ndim == y.ndim and self._check_onehot_data(y):
Drecall.py97 if self._type == 'classification' and y_pred.ndim == y.ndim and self._check_onehot_data(y):
Dmetric.py95 def _check_onehot_data(self, data): member in Metric