天天看点

TensorFlow中加载Keras模型

在TensorFlow中,使用Keras训练好的模型或者Keras自带的预训练模型:

自定义模型:

读取模型或者加载预训练模型,下面使用的是预训练的VGG模型

自定义某一层作为输出

作为计算结果用:

⇒输入值必须是准确值,而不是Tensor,返回值是准确计算结果

作为Tensor用:

⇒输入值可以使准确值,也可以是Tensor,返回值是Tensor对象

具体代码请参照

<a href="https://github.com/wangzhenhui1992/SoaringRoad/tree/master/AI/TensorFlow_Study">https://github.com/wangzhenhui1992/SoaringRoad/tree/master/AI/TensorFlow_Study</a>

转载请注明出处,谢谢

www.soaringroad.com

继续阅读