├── Attacks.py ├── LICENSE ├── README.md ├── audioseal_attack.py ├── config.yaml ├── dataset.py ├── diffwave ├── __init__.py ├── __main__.py ├── dataset.py ├── inference.py ├── learner.py ├── model.py ├── params.py ├── preprocess.py └── readme.md ├── inference.py ├── model.py ├── pretrain └── path_to_pretrained_model ├── requirement.txt └── utils.py /Attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/Attacks.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/README.md -------------------------------------------------------------------------------- /audioseal_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/audioseal_attack.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/config.yaml -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/dataset.py -------------------------------------------------------------------------------- /diffwave/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffwave/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/diffwave/__main__.py -------------------------------------------------------------------------------- /diffwave/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/diffwave/dataset.py -------------------------------------------------------------------------------- /diffwave/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/diffwave/inference.py -------------------------------------------------------------------------------- /diffwave/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/diffwave/learner.py -------------------------------------------------------------------------------- /diffwave/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/diffwave/model.py -------------------------------------------------------------------------------- /diffwave/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/diffwave/params.py -------------------------------------------------------------------------------- /diffwave/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/diffwave/preprocess.py -------------------------------------------------------------------------------- /diffwave/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/diffwave/readme.md -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/inference.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/model.py -------------------------------------------------------------------------------- /pretrain/path_to_pretrained_model: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/requirement.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-GAW/Groot/HEAD/utils.py --------------------------------------------------------------------------------