From 8268360674a4a158cd755f563b69fd8493bef637 Mon Sep 17 00:00:00 2001 From: Shivam Mehta Date: Fri, 12 Jan 2024 10:32:59 +0000 Subject: [PATCH] Update download urls --- .pylintrc | 71 --------------------------------------------------- matcha/cli.py | 8 +++--- 2 files changed, 4 insertions(+), 75 deletions(-) diff --git a/.pylintrc b/.pylintrc index 11aeb8d..7ab186a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -82,16 +82,6 @@ disable=missing-docstring, no-name-in-module, no-member, unsubscriptable-object, - print-statement, - parameter-unpacking, - unpacking-in-except, - old-raise-syntax, - backtick, - long-suffix, - old-ne-operator, - old-octal-literal, - import-star-module-level, - non-ascii-bytes-literal, raw-checker-failed, bad-inline-option, locally-disabled, @@ -106,67 +96,6 @@ disable=missing-docstring, too-many-arguments, too-many-locals, too-many-statements, - apply-builtin, - basestring-builtin, - buffer-builtin, - cmp-builtin, - coerce-builtin, - execfile-builtin, - file-builtin, - long-builtin, - raw_input-builtin, - reduce-builtin, - standarderror-builtin, - unicode-builtin, - xrange-builtin, - coerce-method, - delslice-method, - getslice-method, - setslice-method, - no-absolute-import, - old-division, - dict-iter-method, - dict-view-method, - next-method-called, - metaclass-assignment, - indexing-exception, - raising-string, - reload-builtin, - oct-method, - hex-method, - nonzero-method, - cmp-method, - input-builtin, - round-builtin, - intern-builtin, - unichr-builtin, - map-builtin-not-iterating, - zip-builtin-not-iterating, - range-builtin-not-iterating, - filter-builtin-not-iterating, - using-cmp-argument, - eq-without-hash, - div-method, - idiv-method, - rdiv-method, - exception-message-attribute, - invalid-str-codec, - sys-max-int, - bad-python3-import, - deprecated-string-function, - deprecated-str-translate-call, - deprecated-itertools-function, - deprecated-types-field, - next-method-defined, - dict-items-not-iterating, - dict-keys-not-iterating, - dict-values-not-iterating, - deprecated-operator-function, - deprecated-urllib-function, - xreadlines-attribute, - deprecated-sys-function, - exception-escape, - comprehension-escape, duplicate-code, not-callable, import-outside-toplevel, diff --git a/matcha/cli.py b/matcha/cli.py index 9e3f7fb..f3c29a7 100644 --- a/matcha/cli.py +++ b/matcha/cli.py @@ -18,8 +18,8 @@ from matcha.text import sequence_to_text, text_to_sequence from matcha.utils.utils import assert_model_downloaded, get_user_data_dir, intersperse MATCHA_URLS = { - "matcha_ljspeech": "https://drive.google.com/file/d/1BBzmMU7k3a_WetDfaFblMoN18GqQeHCg/view?usp=drive_link", - "matcha_vctk": "https://drive.google.com/file/d/1enuxmfslZciWGAl63WGh2ekVo00FYuQ9/view?usp=drive_link", + "matcha_ljspeech": "https://github.com/shivammehta25/Matcha-TTS-checkpoints/releases/download/v1.0/matcha_ljspeech.ckpt", + "matcha_vctk": "https://github.com/shivammehta25/Matcha-TTS-checkpoints/releases/download/v1.0/matcha_vctk.ckpt", } VOCODER_URLS = { @@ -63,7 +63,7 @@ def get_texts(args): if args.text: texts = [args.text] else: - with open(args.file) as f: + with open(args.file, encoding="utf-8") as f: texts = f.readlines() return texts @@ -140,7 +140,7 @@ def validate_args(args): if args.checkpoint_path is None: # When using pretrained models - if args.model in SINGLESPEAKER_MODEL.keys(): + if args.model in SINGLESPEAKER_MODEL: args = validate_args_for_single_speaker_model(args) if args.model in MULTISPEAKER_MODEL: