前端之家收集整理的这篇文章主要介绍了
ubuntu下切换keras的后端,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
找到目录:
~/.keras/keras.json
如果该目录下没有该文件,你可以手动创建一个。
theano:
keras.json文件默认配置
{
"image_dim_ordering": "th","epsilon": 1e-07,"floatx": "float32","backend": "theano" }
thesorflow:
keras.json文件默认配置
{
"image_dim_ordering": "tf","backend": "tensorflow" }
ref:
原文链接:https://www.f2er.com/ubuntu/355784.html