File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 18
18
class RockyPlanet :
19
19
def __init__ (self ):
20
20
# 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 = {
22
22
'MDN' : mdn .MDN (OUTPUT_DIMS , N_MIXES ),
23
23
"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" ))
25
25
self .model_b = load_model (os .path .join (model_path , "model_b.h5" ), custom_objects = {
26
26
'MDN' : mdn .MDN (OUTPUT_DIMS , N_MIXES ),
27
27
"mdn_loss_func" : mdn .get_mixture_loss_func (OUTPUT_DIMS , N_MIXES )}, compile = False )
You can’t perform that action at this time.
0 commit comments