标签: python machine-learning keras deep-learning fast-ai
我有 .h5 格式的预训练模型,如何使用 fastai 加载它并进行转移学习?
我目前正在使用Keras进行迁移学习,但是Keras没有Fastai的某些功能,我要使用的功能是
1)(ticket_id, ticketstatus_id) 2)learn.lr_find()
(ticket_id, ticketstatus_id)
learn.lr_find()
(以找到最佳学习率)和
3)learn.recorder.plot()
learn.recorder.plot()
(为不同的层使用不同的学习率)。
我在上述Keras功能中发现了一些实现,但是它们存在很多问题。