weights = 'noisy-student' ValueError: `weights` 参数应该是 `None`、`imagenet` 或要加载的权重文件的路径

Posted

技术标签:

【中文标题】weights = \'noisy-student\' ValueError: `weights` 参数应该是 `None`、`imagenet` 或要加载的权重文件的路径【英文标题】:weights = 'noisy-student' ValueError: The `weights` argument should be either `None`, `imagenet`, or the path to the weights file to be loadedweights = 'noisy-student' ValueError: `weights` 参数应该是 `None`、`imagenet` 或要加载的权重文件的路径 【发布时间】:2020-09-27 20:50:27 【问题描述】:

我正在使用 Google Colab,我想使用 EfficientNet Noisy Student 的权重。 https://www.kaggle.com/c/bengaliai-cv19/discussion/132894

首先,我通过以下方式安装了软件包:

!pip install git+https://github.com/qubvel/efficientnet

然后我尝试了上面提到的网站上的代码:

import efficientnet.keras as eff
model = eff.EfficientNetB0(weights='noisy-student')

并得到这个值错误:

ValueError: The `weights` argument should be either `None` (random initialization), `imagenet` (pre-training on ImageNet), or the path to the weights file to be loaded.

有人知道如何解决这个问题吗?

【问题讨论】:

【参考方案1】:

你可以从here下载权重。 并像这样手动加载它:

path_to_weights = "/..your..path../efficientnet-b5_noisy-student_notop.h5"
model = EfficientNetB5(include_top=False)
model.load_weights(path_to_weights, by_name=True)

【讨论】:

以上是关于weights = 'noisy-student' ValueError: `weights` 参数应该是 `None`、`imagenet` 或要加载的权重文件的路径的主要内容,如果未能解决你的问题,请参考以下文章

关于CSS3中font-weight的作用!

r包emmeans中的weights="cell"和weights="proportional"有啥区别

什么是 yolo_best.weights 文件?它与 yolo_custom.weights 有何不同

苹果电脑 font-weight=100 无效 html css 有办法解决吗

keepalived的weight

scikit-learn:随机森林 class_weight 和 sample_weight 参数