zwd2016

Results 7 comments of zwd2016

> 大佬你好,请问为什么我选择了model.compile(loss='mse',optimizer='adahmg',metrics=['mae'])还是会报错ValueError: Unknown optimizer: adahmg 你好, 你需要把我写好的optimizers.py覆盖了Keras的同名文件。或者你把这个文件里的AdaHMG类单独拿出来写一个py文件和main放在同级目录下,然后from adahmg import AdaHMG,再然后优化器那边直接写成AdaHMG(lr=0.001,...)这样子。

> File "h5py_objects.pyx", line 54, in h5py._objects.with_phil.wrapper File "h5py_objects.pyx", line 55, in h5py._objects.with_phil.wrapper File "h5py\h5f.pyx", line 96, in h5py.h5f.open OSError: Unable to open file (file signature not found) 这是模型权重.h5文件不完整导致的吗?my_model_best_weights.h5是我自己手动在同级目录里面创建的 你好,...

> _No description provided._ 你好,数据集的地址是这个: https://archive-beta.ics.uci.edu/ml/datasets/beijing+pm2+5+data

> Hi, could you tell me that what the versin of TensorFlow and Keras are? I always failling to run code, or can you provide Docker version of the running...

> from .utils.generic_utils import serialize_keras_object > from .utils.generic_utils import deserialize_keras_object > from .legacy import interfaces > 您好,请问我在导入这些包时出现问题,请问您可以帮助一下么, 你好, 这个问题应该是Keras版本的问题(你conda虚拟环境严格安装2.1.5版本就不会有问题),新版本很有可能更改了某些方法的名字或者是存放路径。同时,优化器的文件是需要替换你conda虚拟环境下keras文件里面的optimizer.py的,不是在模型文件的同级目录下运行。

> 请问我要进行多步预测,就是用前m个数据点预测后n个数据点,要修改哪些参数呢?谢谢 似乎是数据处理的时候要把数据集按照预测步数整理下形状重新生成X和Y(label),你可以看看那些基于Transformer的模型,那类型的研究主要是多步预测,基于LSTM的模型因为误差积累的原因多步的效果很不好。

Hi @tangxianfeng, I also encountered a similar problem, why do timeslots start from 500. The second is how to set up the code to load samples one batch by one...