我试图了解.box {
border:2px solid red;
min-height:50px;
width:100%;
}
.box > div {
position:fixed;
width:inherit;
min-height:50px;
border:2px solid green;
}
body {
padding-left:100px;
}
函数在不同模型的keras中如何工作。我查看了源代码(即ResNet50),但无法理解定义为here的修饰符<div class="box">
<div></div>
</div>
。
模块注入如何与装饰器一起工作?
如何直接查看每个模型执行哪些预处理步骤?
答案 0 :(得分:1)
实际上,预先训练的模型及其相关代码在不久前被分解到名为keras_applications
的单独软件包中。因此,您可以看到预处理逻辑,特别是preprocess_input
函数here。