170715 Keras Learning Notes(TBC)

来源:互联网 发布:静默卸载软件 bat 编辑:程序博客网 时间:2024/06/05 17:15
  • tensorflow 与 theano中关于图像维度的定义不同

tensorflow: (64,64,3) # rgb在末端
theano: (3,64,64) # rgb在前端

from keas import backend as KK.set_image_dim_ordering('tf')

Getting Tensorflow, Theano and Keras on Windows