Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Buethe <jbuethe@amazon.de>2023-09-12 17:22:49 +0300
committerJan Buethe <jbuethe@amazon.de>2023-09-12 17:22:49 +0300
commit5467539c15acf41735f15c80e1a3f47abcc4f8f3 (patch)
tree74f53d63a25049982231b1c5d297da4a04215b48
parent2f290d32ed79ad172b5981498711a6291b1f88a2 (diff)
added requirements.txt to osce
Signed-off-by: Jan Buethe <jbuethe@amazon.de>
-rw-r--r--dnn/torch/osce/README.md10
-rw-r--r--dnn/torch/osce/requirements.txt9
2 files changed, 17 insertions, 2 deletions
diff --git a/dnn/torch/osce/README.md b/dnn/torch/osce/README.md
index 1f940113..3b8ebc75 100644
--- 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
diff --git a/dnn/torch/osce/requirements.txt b/dnn/torch/osce/requirements.txt
new file mode 100644
index 00000000..4ca566e5
--- /dev/null
+++ b/dnn/torch/osce/requirements.txt
@@ -0,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