shithub: opus

Download patch

ref: 5467539c15acf41735f15c80e1a3f47abcc4f8f3
parent: 2f290d32ed79ad172b5981498711a6291b1f88a2
author: Jan Buethe <jbuethe@amazon.de>
date: Tue Sep 12 12:22:49 EDT 2023

added requirements.txt to osce

Signed-off-by: Jan Buethe <jbuethe@amazon.de>

--- a/dnn/torch/osce/README.md
+++ b/dnn/torch/osce/README.md
@@ -1,4 +1,10 @@
 # Opus Speech Coding Enhancement
 
-This folder hosts models for enhancing SILK. See related Opus repo https://gitlab.xiph.org/xiph/opus/-/tree/exp-neural-silk-enhancement
-for feature generation.
\ No newline at end of file
+This folder hosts models for enhancing Opus SILK. See related Opus repo https://gitlab.xiph.org/xiph/opus/-/tree/exp-neural-silk-enhancement
+for feature generation.
+
+## Environment setup
+The code is tested with python 3.11. Conda setup is done via
+`conda create -n osce python=3.11`
+`conda activate osce`
+`python -m pip install -r requirements`
\ No newline at end of file
--- /dev/null
+++ b/dnn/torch/osce/requirements.txt
@@ -1,0 +1,9 @@
+pyyaml==6.0.1
+torch==2.0.1
+numpy==1.25.2
+scipy==1.11.2
+pesq==0.0.4
+gitpython==3.1.36
+matplotlib==3.7.3
+torchaudio==2.0.2
+tqdm==4.66.1
--