解决tensorflow下由于numpy版本问题运行造成的警告错误 (np_resource = np.dtype([(“ resource”,np.ubyte,1)])]) _np_qint8 等)
一、博主环境: python 3.7 tensorflow 1.14 numpy(原版本)1.17.0 二、报错描述: / . local / lib / python3 . 7 / site - packages / tensorboard / compat / tensorflow_stub / dtypes . py: 541 :FutureWarning:传递( type , 1 )或 '1type' 作为其同义词类型已弃用;在numpy的未来版本中,它将被理解为( type ,( 1 ,)) / '(1,)type' 。 _np_qint8 = np . dtype( [ (“ qint8”,np . int8, 1 ) ] ) 〜 / . local / lib / python3 . 7 / site - packages / tensorboard / compat / tensorflow_stub / dtypes . py: 542 :FutureWarning:传递( type , 1 )或 '1type' 作为 type 的同义词已被弃用;在numpy的未来版本中,它将被理解为( type ,( 1 ,)) / '(1,)type' 。 _np_quint8 = np . dtype( [ (“ quint8”,np . uint8, 1 ) ] ) 〜