Update extract_feature_print.py
Browse files- extract_feature_print.py +2 -2
extract_feature_print.py
CHANGED
|
@@ -30,7 +30,7 @@ class Config:
|
|
| 30 |
def load_config_json(self) -> dict:
|
| 31 |
configs = {}
|
| 32 |
for config_file in version_config_paths:
|
| 33 |
-
config_path = os.path.join("
|
| 34 |
with open(config_path, "r") as f:
|
| 35 |
configs[config_file] = json.load(f)
|
| 36 |
return configs
|
|
@@ -59,7 +59,7 @@ class Config:
|
|
| 59 |
)
|
| 60 |
|
| 61 |
for config_path in version_config_paths:
|
| 62 |
-
full_config_path = os.path.join("
|
| 63 |
try:
|
| 64 |
with open(full_config_path, "r") as f:
|
| 65 |
config = json.load(f)
|
|
|
|
| 30 |
def load_config_json(self) -> dict:
|
| 31 |
configs = {}
|
| 32 |
for config_file in version_config_paths:
|
| 33 |
+
config_path = os.path.join("/kaggle/working/Mangio-RVC-Fork/configs", config_file)
|
| 34 |
with open(config_path, "r") as f:
|
| 35 |
configs[config_file] = json.load(f)
|
| 36 |
return configs
|
|
|
|
| 59 |
)
|
| 60 |
|
| 61 |
for config_path in version_config_paths:
|
| 62 |
+
full_config_path = os.path.join("/kaggle/working/Mangio-RVC-Fork/configs", config_path)
|
| 63 |
try:
|
| 64 |
with open(full_config_path, "r") as f:
|
| 65 |
config = json.load(f)
|