a.scherbin commited on
Commit ·
93c0f69
1
Parent(s): ab9078f
Load models and readme
Browse files- .gitignore +1 -0
- Baseline.onnx +3 -0
- Baseline_model.pth +3 -0
- ENOT_optimized.onnx +3 -0
- ENOT_optimized_model.pth +3 -0
- README.md +28 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.idea
|
Baseline.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:117e3962674ef976a9ec09806ea966cd9102a2248c6e8eb8aaa4d35848612ba1
|
| 3 |
+
size 8481954
|
Baseline_model.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e73d633f2258218372f32b396ae8bbd258b1c86873fd1aeb89a2c96b167e662
|
| 3 |
+
size 8392115
|
ENOT_optimized.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:afb708ccc250171d8eeaef636f9be313b562f4042a4f023ff596a7e0c46c137f
|
| 3 |
+
size 2633740
|
ENOT_optimized_model.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e3896ba5b1a0bc31199952777ae11fcb2be704ba2e99d9cc4ec32118b284adf
|
| 3 |
+
size 2533585
|
README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- VoiceBank+DEMAND
|
| 5 |
+
tags:
|
| 6 |
+
- ENOT-AutoDL
|
| 7 |
+
- SpeechEnhancement
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# ENOT-AutoDL MP-SENet optimization on VoiceBank+DEMAND dataset.
|
| 11 |
+
|
| 12 |
+
This repository contains the optimized version of [MP-SENet](https://github.com/yxlu-0102/MP-SENet) model.
|
| 13 |
+
Number of MACs aka FLOPS was used for computational complexity measurement. PESQ score was used as a quality metric.
|
| 14 |
+
|
| 15 |
+
## Optimization results
|
| 16 |
+
|
| 17 |
+
We use MACs as a latency measure because this metric is device-agnostic and implementation independent.
|
| 18 |
+
There is also a possibility to optimize a model by target device latency using ENOT neural architecture selection algorithm.
|
| 19 |
+
Please, keep in mind that acceleration by device latency differs from acceleration by MACs.
|
| 20 |
+
|
| 21 |
+
| **Model** | **MACs** | **acceleration** | PESQ score |
|
| 22 |
+
|----------------|:--------:|:----------------:|:----------:|
|
| 23 |
+
| baseline | 302.39 B | 1.0 | 3.381 |
|
| 24 |
+
| ENOT optimized | 120.95 B | 2.5 | 3.386 |
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
If you want to book a demo, please contact us: enot@enot.ai .
|