kristpapadopoulos / seriesnet

Time series prediction using dilated causal convolutional neural nets (temporal CNN)
MIT License
232 stars 64 forks source link

Simpe test example #8

Closed RoyalTS94 closed 2 years ago

RoyalTS94 commented 4 years ago

Hey, thanks for this great code! As for saubersf running a simple example does not work for me. I get an error for the model.fit(X,y) call in line 127. Error message is "ValueError: None values not supported." Do you know how to solve this error?

lgq1997 commented 4 years ago

Hey, I also encountered this problem, did you solve it?

gouravvemula0 commented 4 years ago

change optimizers.Adam(lr=0.00075, beta_1=0.9, beta_2=0.999, epsilon=None, decay=0.0, amsgrad=False) to optimizers.Adam(lr=0.001)

lgq1997 commented 4 years ago

将优化器更改为优化器.Adam(lr = 0.00075,beta_1 = 0.9,beta_2 = 0.999,epsilon = None,衰减= 0.0,amsgrad = False)更改为优化器.Adam(lr = 0.001)

The problem is solved,thank you very much!