作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为一个工作项目使用 simpletransformers ( https://github.com/ThilinaRajapakse/simpletransformers )。训练模型后,我将一堆文件转储到输出文件夹。我想知道,如果你想加载一个以前训练过的模型(我假设它保存在输出文件夹中)以便你可以立即针对新数据运行它,你会怎么做呢? Picture of files in output folder
借助 scikit-learn,您可以轻松地将模型导出为 json,然后将它们加载回去,我想这可能有类似的过程?
最佳答案
from simpletransformers.classification import ClassificationModel
model = ClassificationModel("bert", "outputs/best_model")
model.predict(['Enter text to classify'])
关于python - 如何从检查点加载简单的变形金刚模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62271872/
我是一名优秀的程序员,十分优秀!