
TF
齐天大圣~~
这个作者很懒,什么都没留下…
展开
-
Keras 2.0 模型加载与保存
转 https://blog.youkuaiyun.com/yangzm/article/details/82685415 第一种 from keras.models import load_model model.save('my_model.h5') # creates a HDF5 file 'my_model.h5' del model # deletes the existing model # returns a compiled model # identical to the previ...转载 2020-11-16 17:30:53 · 352 阅读 · 0 评论 -
Tensorflow 与keras 对应版本查询
Tensorflow 与keras 对应版本查询 https://docs.floydhub.com/guides/environments/原创 2020-11-16 16:09:00 · 1311 阅读 · 0 评论 -
VGG 网络结构
从图中可以看出VGG结构由5层卷积层、3层全连接层、softmax输出层构成,层与层之间使用max-pooling(最大池化)分开,所有隐层的激活单元都采用ReLU函数。VGG最大的贡献就是证明了卷积神经网络的深度增加和小卷积核的使用对网络的最终分类识别效果有很大的作用。 卷积层部分尺度没有变化(3*3的卷积核,stride为1,padding为1),只有通过max pooling层时尺度缩...转载 2019-04-13 23:05:24 · 9375 阅读 · 0 评论 -
VGG权重,模型结构,下载地址
https://www.cs.toronto.edu/~frossard/post/vgg16/原创 2019-04-13 23:52:15 · 2230 阅读 · 0 评论