Skip to content
Snippets Groups Projects
Commit 8c29a0ce authored by masak1112's avatar masak1112
Browse files

fix the bugs for integrating weatherbench3DCNN architecture

parent add452bf
No related branches found
No related tags found
No related merge requests found
Pipeline #102330 passed
......@@ -13,7 +13,7 @@ def known_models():
'convLSTM_gan': "ConvLstmGANVideoPredictionModel",
'ours_vae_l1': 'SAVPVideoPredictionModel',
'ours_gan': 'SAVPVideoPredictionModel',
"weatherBench": "WeatherBenchModel "
"weatherBench": "WeatherBenchModel"
}
return model_mappings
......@@ -13,7 +13,7 @@ from model_modules.video_prediction.losses import *
class WeatherBenchModel(object):
def __init__(self, hparams_dict=None):
def __init__(self, hparams_dict=None,**kwargs):
"""
This is class for building weahterBench architecture by using updated hparameters
args:
......@@ -67,7 +67,8 @@ class WeatherBenchModel(object):
loss_fun = "mse",
shuffle_on_val= True,
filter = 4,
kernels = 4
kernels = 4,
)
return hparams
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment