-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请问下 转tflite 模型能支持签名吗? #299
Comments
您好,我已经收到您的邮件,我会尽快查看并在第一时间回复您。
|
等下,这个需要 |
话说你可以用contrib里面的tflite2tf(生成tf.function)再结合你这段代码来暂时满足这个需求 |
啊,不需要tf.lite.OpsSet.SELECT_TF_OPS, 这只是网页的示例,我只需要生成多个graph的需求满足就行了 |
我先试一下这个tflite2tf,不过感觉支持的op不是很多,可能不太能满足需求。 |
那我这边先前期研究一下,说实话我更偏向于添加把多个graph给merge起来的功能,这样至少core代码不用动 |
不够可以添加的,这个难度不高,你懂的 |
嗯嗯,那非常感谢了! |
这边试了下,确实是不需要tf的ops就可以完成转换,主要需要支持TFLite Model的SubGraphs以及SignatureDefs,工作量在于需要把不同的SubGraph的信息读出来重新进行组织成新的Model。如前面所说的,会新增一个将多个tflite模型合并在一起的一个函数 |
在tflite2.7 版本后 已经支持多签名了:https://tensorflow.google.cn/lite/guide/signatures?hl=zh-cn
这样一个tflite文件可以有多个graph,在调用的时候可以通过签名来找到子graph.
请教一下TinyNeuralNetwork能否支持一下这个功能?非常感谢啊!
The text was updated successfully, but these errors were encountered: