TF Hub 的通用 SavedModel API
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
简介
TensorFlow Hub 托管了适用于各种任务的模型。建议为同一任务的模型实现一个通用 API,以便模型使用者能够轻松地换用不同模型,而无需修改使用这些模型的代码,即使模型来自不同的发布者也是如此。
目的是让使用者能够针对同一任务轻松换用不同的模型,就像切换采用字符串值的超参数一样简单。这样,模型使用者可以轻松找到最能解决其问题的模型。
此目录下收录了采用 TF2 SavedModel 格式的模型的通用 API 规范。(它取代现已弃用的 TF1 Hub 格式的通用签名。)
可重复使用的 SavedModel:通用基础
Reusable SavedModel API 定义了如何将 SavedModel 重新加载到 Python 程序并将其作为整个 TensorFlow 模型的一部分重复使用的一般规则。
基本用法:
obj = hub.load("path/to/model") # That's tf.saved_model.load() after download.
outputs = obj(inputs, training=False) # Invokes the tf.function obj.__call__.
对于 Keras 用户,hub.KerasLayer
类会借助此 API 将可重复使用的 SavedModel 封装为 Keras 层(让 Keras 用户无需处理细节),其中输入和输出视下文列出的任务特有 API 而定。
任务特有的 API
这些 API 可依据特定机器学习任务和数据类型的惯例优化 Reusable SavedModel SavedModel API。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2021-09-01。
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"没有我需要的信息"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"太复杂/步骤太多"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"内容需要更新"
},{
"type": "thumb-down",
"id": "translationIssue",
"label":"翻译问题"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"示例/代码问题"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"其他"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"易于理解"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"解决了我的问题"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"其他"
}]
{"lastModified": "\u6700\u540e\u66f4\u65b0\u65f6\u95f4 (UTC)\uff1a2021-09-01\u3002"}
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2021-09-01。"],[],[]]