FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated

后端 未结 11 1056
眼角桃花
眼角桃花 2020-12-07 13:53

After updating my Numpy and Tensorflow I am getting these kind of warnings. I had already tried these, but nothing works, every suggestion will be

11条回答
  •  自闭症患者
    2020-12-07 14:36

    This is due to a version conflict between h5py and numpy. All you need to do is degrade your numpy version through command as below:

    pip install numpy==1.13.0
    

提交回复
热议问题