Currently, OneFlow can't export tensorflow saved model for serving directly. We understand this kind of requirement, and mark it on oneflow roadmap.
BTW, there is a trick that we used before, only in special cases, most part of oneflow op's api are same with tf's api, if only these ops are choose to build up the NN, it's easy to switch between flow and tf, here is an example:
Currently, OneFlow can't export tensorflow saved model for serving directly. We understand this kind of requirement, and mark it on oneflow roadmap.
BTW, there is a trick that we used before, only in special cases, most part of oneflow op's api are same with tf's api, if only these ops are choose to build up the NN, it's easy to switch between
flow
andtf
, here is an example:Thanks!