From ae4ae3393c546480f1c89442d0972501c896df09 Mon Sep 17 00:00:00 2001 From: Elquintas <sebastiao.frazao@gmail.com> Date: Wed, 11 Jan 2023 16:20:13 +0100 Subject: [PATCH] . --- README | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README b/README index 8cea5f4e..0ca2903d 100644 --- a/README +++ b/README @@ -31,3 +31,13 @@ train.py script trains and validates the system (see train and validation file path in the configs file) test.py script tests the system (see test file in the configs file) + +To directly predict speech intelligibility using a pretrained model go to ./predictor +and use the method "predict" of the class PythonPredictor (in file predictor.py) + +Example: + $python3 + >> import predictor + >> pred = predictor.PythonPredictor() + >> pred.predict('PATH_TO_WAV_FILE') + -- GitLab