Spaces:
Sleeping
Sleeping
Commit ·
9f65b78
1
Parent(s): ba15cd9
Fix utils __init__.py to only import available modules
Browse files
adivad_v2/utils/__init__.py
CHANGED
|
@@ -4,14 +4,12 @@ ADI VAD Utilities
|
|
| 4 |
This module contains utility functions and classes for the ADI VAD project.
|
| 5 |
"""
|
| 6 |
|
| 7 |
-
|
| 8 |
-
from .
|
| 9 |
-
from .
|
| 10 |
|
| 11 |
__all__ = [
|
| 12 |
-
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
|
| 16 |
-
"synthesize_dns_noisy_speech"
|
| 17 |
-
]
|
|
|
|
| 4 |
This module contains utility functions and classes for the ADI VAD project.
|
| 5 |
"""
|
| 6 |
|
| 7 |
+
from .model_utils import load_best_model
|
| 8 |
+
from .modules import FlexibleVAD
|
| 9 |
+
from .preprocessing import VADPreprocessorNoPadding
|
| 10 |
|
| 11 |
__all__ = [
|
| 12 |
+
"load_best_model",
|
| 13 |
+
"FlexibleVAD",
|
| 14 |
+
"VADPreprocessorNoPadding",
|
| 15 |
+
]
|
|
|
|
|
|