Home
last modified time | relevance | path

Searched refs:_score (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/
Deval_scores.py43 self._score = None
66 return self._score
136 return data_access.ScoreFile.Save(self._output_filepath, self._score)
159 self._score = self._tested_signal.dBFS - self._reference_signal.dBFS
191 self._score = dbfs_diffs_sum / float(seconds)
240 self._score = self._ParseOutputFile(echo_detector_out_filepath)
299 self._score = float(polqa_output['PolqaScore'])
391 self._score = thd_plus_noise
/external/tensorflow/tensorflow/examples/speech_commands/
Drecognize_commands.py39 self._score = 0
52 return self._score
56 self._score = value
/external/libaom/libaom/aom_dsp/
Dpsnrhvs.c105 static double convert_score_db(double _score, double _weight, int16_t pix_max) { in convert_score_db() argument
106 assert(_score * _weight >= 0.0); in convert_score_db()
108 if (_weight * _score < pix_max * pix_max * 1e-10) return MAX_PSNR; in convert_score_db()
109 return 10 * (log10(pix_max * pix_max) - log10(_weight * _score)); in convert_score_db()
/external/libvpx/libvpx/vpx_dsp/
Dpsnrhvs.c108 static double convert_score_db(double _score, double _weight, int bit_depth) { in convert_score_db() argument
110 assert(_score * _weight >= 0.0); in convert_score_db()
116 if (_weight * _score < pix_max * pix_max * 1e-10) return MAX_PSNR; in convert_score_db()
117 return 10 * (log10(pix_max * pix_max) - log10(_weight * _score)); in convert_score_db()