Spaces:
Running on Zero
Running on Zero
Vansh Chugh commited on
Commit ·
94e6004
1
Parent(s): 6de7807
kwargs fix for HF version
Browse files
unison/models/mmaudio/ext/bigvgan_v2/bigvgan.py
CHANGED
|
@@ -365,8 +365,8 @@ class BigVGAN(
|
|
| 365 |
revision: str,
|
| 366 |
cache_dir: str,
|
| 367 |
force_download: bool,
|
| 368 |
-
proxies: Optional[Dict],
|
| 369 |
-
resume_download: bool,
|
| 370 |
local_files_only: bool,
|
| 371 |
token: Union[str, bool, None],
|
| 372 |
map_location: str = "cpu", # Additional argument
|
|
|
|
| 365 |
revision: str,
|
| 366 |
cache_dir: str,
|
| 367 |
force_download: bool,
|
| 368 |
+
proxies: Optional[Dict] = None,
|
| 369 |
+
resume_download: bool = False,
|
| 370 |
local_files_only: bool,
|
| 371 |
token: Union[str, bool, None],
|
| 372 |
map_location: str = "cpu", # Additional argument
|