Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/evaluation.py

Issue 2715233003: APM Quality Generator, noise generator and evaluation score workers factory + echo noise generator (Closed)
Patch Set: rebase + style fix Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/evaluation.py
diff --git a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/evaluation.py b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/evaluation.py
index 78446a1e187bcd313de65e48c2a8ec4a18f3f38b..016690a2c4509b3fc95b1088dafe14adea9f6e7b 100644
--- a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/evaluation.py
+++ b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/evaluation.py
@@ -6,8 +6,12 @@
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
+"""Evaluator of the APM module.
+"""
+
import logging
+
class ApmModuleEvaluator(object):
def __init__(self):
@@ -16,6 +20,10 @@ class ApmModuleEvaluator(object):
@classmethod
def run(cls, evaluation_score_workers, apm_output_filepath,
reference_input_filepath, output_path):
+ """Runs the evaluation.
+
+ Iterates over the given evaluation score workers.
+ """
# Init.
scores = {}

Powered by Google App Engine
This is Rietveld 408576698