Skip to content

Commit 1fcee87

Browse files
committed
Fixed default model filename from yaml to ckpt
1 parent 5af6909 commit 1fcee87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

audio_separator/utils/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def main():
4545
download_model_only_help = "Download a single model file only, without performing separation."
4646

4747
io_params = parser.add_argument_group("Separation I/O Params")
48-
io_params.add_argument("-m", "--model_filename", default="model_bs_roformer_ep_317_sdr_12.9755.yaml", help=model_filename_help)
48+
io_params.add_argument("-m", "--model_filename", default="model_bs_roformer_ep_317_sdr_12.9755.ckpt", help=model_filename_help)
4949
io_params.add_argument("--output_format", default="FLAC", help=output_format_help)
5050
io_params.add_argument("--output_bitrate", default=None, help=output_bitrate_help)
5151
io_params.add_argument("--output_dir", default=None, help=output_dir_help)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "audio-separator"
7-
version = "0.28.3"
7+
version = "0.28.4"
88
description = "Easy to use audio stem separation, using various models from UVR trained primarily by @Anjok07"
99
authors = ["Andrew Beveridge <[email protected]>"]
1010
license = "MIT"

0 commit comments

Comments
 (0)