我们公司的云服务器只允许我们将文件保存到hdfs。是否有方法在hdfs上保存Keras模型。我试过model.save,但它不起作用。
发布于 2019-10-12 08:39:48
据我所知,没有办法直接使用Keras。但是有不同的方法来解决这个问题:
- Using Linux you can use: [https://github.com/microsoft/hdfs-mount](https://github.com/microsoft/hdfs-mount)
- Mac&Linux: [https://pypi.org/project/fuse-webhdfs/](https://pypi.org/project/fuse-webhdfs/)
- Windows: not sure if possible but it is mentions here: [https://cwiki.apache.org/confluence/display/HADOOP2/MountableHDFS](https://cwiki.apache.org/confluence/display/HADOOP2/MountableHDFS)
https://stackoverflow.com/questions/58350807
复制相似问题