diff --git a/conf.yaml b/conf.yaml new file mode 100644 index 0000000..e0edeed --- /dev/null +++ b/conf.yaml @@ -0,0 +1,8 @@ +files: + train_clean: clean_testset_wav + train_noisy: noisy_testset_wav + test_clean: clean_testset_wav + test_noisy: noisy_testset_wav +paths: + data: ${hydra:runtime.cwd}/../data/vctk + log: ./runs \ No newline at end of file diff --git a/enhancer/utils/config.py b/enhancer/utils/config.py new file mode 100644 index 0000000..0aaa2e3 --- /dev/null +++ b/enhancer/utils/config.py @@ -0,0 +1,18 @@ +from dataclasses import dataclass + +@dataclass +class Paths: + log : str + data : str + +@dataclass +class Files: + train_clean : str + train_noisy : str + test_clean : str + test_noisy : str + +@dataclass +class EnhancerConfig: + path : Paths + files: Files \ No newline at end of file