multi-source-diffusion-models
No description available.
File Explorer
- README.md
- bass.wav
- drums.wav
- guitar.wav
- piano.wav
- convert_data_format.sh
- README.md
- __init__.py
- evaluate_separation.py
- experiments.py
- eval_msdm_dirac.yaml
- eval_msdm_gaussian.yaml
- eval_weakly_msdm_dirac.yaml
- eval_weakly_msdm_gaussian.yaml
- train_msdm.yaml
- train_weakly_msdm.yaml
- __init__.py
- data.py
- module_base.py
- separation.py
- utils.py
- MSDM-generation.ipynb
- .env.tmp
- .gitignore
- config.yaml
- env.yaml
- evaluate.py
- README.md
- requirements.txt
- train.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda activate
View Details ▼
conda activate
Activate a conda environment.
See also: `conda deactivate`.
conda activate myenv
Activate an existing environment named `myenv`:
conda activate {{path/to/myenv}}
Activate an existing environment located at custom path:
conda activate --stack myenv
Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:
conda env
View Details ▼
conda env
Manage conda environments.
conda env create {{[-f|--file]}} {{path/to/file}}
Create an environment from an environment file (YAML, TXT, etc.):
conda env remove {{[-n|--name]}} {{environment_name}}
Delete an environment and everything in it:
conda env update {{[-f|--file]}} {{path/to/file}} --prune
Update an environment based on an environment file:
jupyter
View Details ▼
jupyter
Web application to create and share documents that contain code, visualizations, and notes.
Primarily used for data analysis, scientific computing, and machine learning.
jupyter notebook
Start a Jupyter notebook server in the current directory:
jupyter notebook {{path/to/file}}.ipynb
Open a specific Jupyter notebook:
jupyter nbconvert --to {{html|markdown|pdf|script|...}} {{path/to/file}}.ipynb
Export a specific Jupyter notebook into another format:
