├── LICENSE ├── README.md ├── conf ├── dset │ ├── chopin-11-44-HQ.yaml │ ├── chopin-11-44-one.yaml │ ├── chopin-11-44.yaml │ └── musdb-mixture-11-44.yaml ├── experiment │ ├── aero.yaml │ └── aeromamba.yaml └── main_config.yaml ├── data_prep ├── create_meta_files.py └── resample_data.py ├── outputs ├── chopin-11-44 │ └── aeromamba │ │ ├── .hydra │ │ ├── config.yaml │ │ ├── hydra.yaml │ │ └── overrides.yaml │ │ └── trainer.log └── musdb-mixture-11-44 │ └── aeromamba │ ├── .hydra │ ├── config.yaml │ ├── hydra.yaml │ └── overrides.yaml │ ├── trainer.log │ └── wandb │ ├── debug-internal.log │ ├── debug.log │ ├── run-20241029_105349-0ilrdhbg │ ├── files │ │ ├── output.log │ │ ├── requirements.txt │ │ └── wandb-metadata.json │ ├── logs │ │ ├── debug-core.log │ │ ├── debug-internal.log │ │ └── debug.log │ └── run-0ilrdhbg.wandb │ └── run-20241029_105445-p0dnbwer │ ├── files │ ├── config.yaml │ ├── output.log │ ├── requirements.txt │ ├── wandb-metadata.json │ └── wandb-summary.json │ ├── logs │ ├── debug-core.log │ ├── debug-internal.log │ └── debug.log │ └── run-p0dnbwer.wandb ├── predict.py ├── predict_batch.sh ├── predict_batch_with_ola.py ├── requirements.txt ├── src ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-38.pyc │ ├── enhance.cpython-310.pyc │ ├── enhance.cpython-38.pyc │ ├── evaluate.cpython-310.pyc │ ├── evaluate.cpython-38.pyc │ ├── metrics.cpython-310.pyc │ ├── metrics.cpython-38.pyc │ ├── model_serializer.cpython-310.pyc │ ├── model_serializer.cpython-38.pyc │ ├── solver.cpython-310.pyc │ ├── solver.cpython-38.pyc │ ├── utils.cpython-310.pyc │ ├── utils.cpython-38.pyc │ ├── wandb_logger.cpython-310.pyc │ └── wandb_logger.cpython-38.pyc ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── audio.cpython-310.pyc │ │ ├── audio.cpython-38.pyc │ │ ├── datasets.cpython-310.pyc │ │ └── datasets.cpython-38.pyc │ ├── audio.py │ └── datasets.py ├── ddp │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── distrib.cpython-310.pyc │ │ ├── distrib.cpython-38.pyc │ │ ├── executor.cpython-310.pyc │ │ └── executor.cpython-38.pyc │ ├── distrib.py │ └── executor.py ├── enhance.py ├── evaluate.py ├── metrics.py ├── model_serializer.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── aero.cpython-310.pyc │ │ ├── aero.cpython-38.pyc │ │ ├── demucs.cpython-310.pyc │ │ ├── discriminators.cpython-310.pyc │ │ ├── discriminators.cpython-38.pyc │ │ ├── modelFactory.cpython-310.pyc │ │ ├── modelFactory.cpython-38.pyc │ │ ├── modules.cpython-310.pyc │ │ ├── modules.cpython-38.pyc │ │ ├── seanet.cpython-310.pyc │ │ ├── seanet.cpython-38.pyc │ │ ├── snake.cpython-310.pyc │ │ ├── snake.cpython-38.pyc │ │ ├── spec.cpython-310.pyc │ │ ├── spec.cpython-38.pyc │ │ ├── stft_loss.cpython-310.pyc │ │ ├── stft_loss.cpython-38.pyc │ │ ├── utils.cpython-310.pyc │ │ └── utils.cpython-38.pyc │ ├── aero.py │ ├── demucs.py │ ├── discriminators.py │ ├── modelFactory.py │ ├── modules.py │ ├── seanet.py │ ├── snake.py │ ├── spec.py │ ├── stft_loss.py │ ├── test_demucs.ipynb │ └── utils.py ├── solver.py ├── utils.py └── wandb_logger.py ├── test.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/README.md -------------------------------------------------------------------------------- /conf/dset/chopin-11-44-HQ.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/conf/dset/chopin-11-44-HQ.yaml -------------------------------------------------------------------------------- /conf/dset/chopin-11-44-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/conf/dset/chopin-11-44-one.yaml -------------------------------------------------------------------------------- /conf/dset/chopin-11-44.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/conf/dset/chopin-11-44.yaml -------------------------------------------------------------------------------- /conf/dset/musdb-mixture-11-44.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/conf/dset/musdb-mixture-11-44.yaml -------------------------------------------------------------------------------- /conf/experiment/aero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/conf/experiment/aero.yaml -------------------------------------------------------------------------------- /conf/experiment/aeromamba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/conf/experiment/aeromamba.yaml -------------------------------------------------------------------------------- /conf/main_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/conf/main_config.yaml -------------------------------------------------------------------------------- /data_prep/create_meta_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/data_prep/create_meta_files.py -------------------------------------------------------------------------------- /data_prep/resample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/data_prep/resample_data.py -------------------------------------------------------------------------------- /outputs/chopin-11-44/aeromamba/.hydra/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/chopin-11-44/aeromamba/.hydra/config.yaml -------------------------------------------------------------------------------- /outputs/chopin-11-44/aeromamba/.hydra/hydra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/chopin-11-44/aeromamba/.hydra/hydra.yaml -------------------------------------------------------------------------------- /outputs/chopin-11-44/aeromamba/.hydra/overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/chopin-11-44/aeromamba/.hydra/overrides.yaml -------------------------------------------------------------------------------- /outputs/chopin-11-44/aeromamba/trainer.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/.hydra/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/.hydra/config.yaml -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/.hydra/hydra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/.hydra/hydra.yaml -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/.hydra/overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/.hydra/overrides.yaml -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/trainer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/trainer.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/debug-internal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/debug-internal.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/debug.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/files/output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/files/output.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/files/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/files/requirements.txt -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/files/wandb-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/files/wandb-metadata.json -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/logs/debug-core.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/logs/debug-core.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/logs/debug-internal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/logs/debug-internal.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/logs/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/logs/debug.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105349-0ilrdhbg/run-0ilrdhbg.wandb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/config.yaml -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/output.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/requirements.txt -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/wandb-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/wandb-metadata.json -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/files/wandb-summary.json: -------------------------------------------------------------------------------- 1 | {"_wandb":{"runtime":43}} -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/logs/debug-core.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/logs/debug-core.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/logs/debug-internal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/logs/debug-internal.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/logs/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/logs/debug.log -------------------------------------------------------------------------------- /outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/run-p0dnbwer.wandb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/outputs/musdb-mixture-11-44/aeromamba/wandb/run-20241029_105445-p0dnbwer/run-p0dnbwer.wandb -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/predict.py -------------------------------------------------------------------------------- /predict_batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/predict_batch.sh -------------------------------------------------------------------------------- /predict_batch_with_ola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/predict_batch_with_ola.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/enhance.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/enhance.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/enhance.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/enhance.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/evaluate.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/evaluate.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/evaluate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/evaluate.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/metrics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/metrics.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/model_serializer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/model_serializer.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/model_serializer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/model_serializer.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/solver.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/solver.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/solver.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/solver.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/wandb_logger.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/wandb_logger.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/wandb_logger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/__pycache__/wandb_logger.cpython-38.pyc -------------------------------------------------------------------------------- /src/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/data/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/data/__pycache__/audio.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/data/__pycache__/audio.cpython-310.pyc -------------------------------------------------------------------------------- /src/data/__pycache__/audio.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/data/__pycache__/audio.cpython-38.pyc -------------------------------------------------------------------------------- /src/data/__pycache__/datasets.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/data/__pycache__/datasets.cpython-310.pyc -------------------------------------------------------------------------------- /src/data/__pycache__/datasets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/data/__pycache__/datasets.cpython-38.pyc -------------------------------------------------------------------------------- /src/data/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/data/audio.py -------------------------------------------------------------------------------- /src/data/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/data/datasets.py -------------------------------------------------------------------------------- /src/ddp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ddp/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/ddp/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/ddp/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/ddp/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/ddp/__pycache__/distrib.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/ddp/__pycache__/distrib.cpython-310.pyc -------------------------------------------------------------------------------- /src/ddp/__pycache__/distrib.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/ddp/__pycache__/distrib.cpython-38.pyc -------------------------------------------------------------------------------- /src/ddp/__pycache__/executor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/ddp/__pycache__/executor.cpython-310.pyc -------------------------------------------------------------------------------- /src/ddp/__pycache__/executor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/ddp/__pycache__/executor.cpython-38.pyc -------------------------------------------------------------------------------- /src/ddp/distrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/ddp/distrib.py -------------------------------------------------------------------------------- /src/ddp/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/ddp/executor.py -------------------------------------------------------------------------------- /src/enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/enhance.py -------------------------------------------------------------------------------- /src/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/evaluate.py -------------------------------------------------------------------------------- /src/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/metrics.py -------------------------------------------------------------------------------- /src/model_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/model_serializer.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/aero.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/aero.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/aero.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/aero.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/demucs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/demucs.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/discriminators.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/discriminators.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/discriminators.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/discriminators.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/modelFactory.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/modelFactory.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/modelFactory.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/modelFactory.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/modules.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/modules.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/modules.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/modules.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/seanet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/seanet.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/seanet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/seanet.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/snake.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/snake.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/snake.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/snake.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/spec.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/spec.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/spec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/spec.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/stft_loss.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/stft_loss.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/stft_loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/stft_loss.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /src/models/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /src/models/aero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/aero.py -------------------------------------------------------------------------------- /src/models/demucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/demucs.py -------------------------------------------------------------------------------- /src/models/discriminators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/discriminators.py -------------------------------------------------------------------------------- /src/models/modelFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/modelFactory.py -------------------------------------------------------------------------------- /src/models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/modules.py -------------------------------------------------------------------------------- /src/models/seanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/seanet.py -------------------------------------------------------------------------------- /src/models/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/snake.py -------------------------------------------------------------------------------- /src/models/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/spec.py -------------------------------------------------------------------------------- /src/models/stft_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/stft_loss.py -------------------------------------------------------------------------------- /src/models/test_demucs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/test_demucs.ipynb -------------------------------------------------------------------------------- /src/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/models/utils.py -------------------------------------------------------------------------------- /src/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/solver.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/wandb_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/src/wandb_logger.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeromamba-super-resolution/aeromamba/HEAD/train.py --------------------------------------------------------------------------------