Skip to content

Commit 898b5ca

Browse files
committed
update
1 parent 69e34c1 commit 898b5ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deepexo/rockyplanet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
class RockyPlanet:
1919
def __init__(self):
2020
# print('init RockyPlanet')
21-
self.model_a = load_model(os.path.join(model_path, "model_a.h5"), custom_objects={
21+
self.model_a = load_model(os.path.join(model_path, "model_a1.h5"), custom_objects={
2222
'MDN': mdn.MDN(OUTPUT_DIMS, N_MIXES),
2323
"mdn_loss_func": mdn.get_mixture_loss_func(OUTPUT_DIMS, N_MIXES)}, compile=False)
24-
self.model_a_scaler = joblib.load(os.path.join(model_path, "model_a_scaler.save"))
24+
self.model_a_scaler = joblib.load(os.path.join(model_path, "model_a1_scaler.save"))
2525
self.model_b = load_model(os.path.join(model_path, "model_b.h5"), custom_objects={
2626
'MDN': mdn.MDN(OUTPUT_DIMS, N_MIXES),
2727
"mdn_loss_func": mdn.get_mixture_loss_func(OUTPUT_DIMS, N_MIXES)}, compile=False)

0 commit comments

Comments
 (0)