
keras
喵喵扫描仪
这个作者很懒,什么都没留下…
展开
-
《Kaggle Histopathologic Cancer Detection癌症图像分类比赛》之Keras/Generator实现
项目地址:https://www.kaggle.com/c/histopathologic-cancer-detection/overview本文记录了自己使用纯Keras以及Keras标准的Generator的数据准备方式:其他实现方式见:Kaggle Histopathology Cancel Detection之Pyorch实现Kaggle Histopathologic Cancer Detection之Keras实现Kaggle Histopathologic Cancer Detect原创 2020-10-20 11:18:34 · 437 阅读 · 0 评论 -
《Kaggle Histopathologic Cancer Detection比赛》之Tensorflow Dataset/Keras Model实现
Keras和Tensorflow的结合相当紧密,使用Keras创建模型,然后使用Tensorflow的Dataset喂数据,训练结果保存为Tensorflow的Checkpoint都是可以的,这边给出一个使用tf.Dataset->Keras Model->Checkpoint的实现供参考记录其他使用Pytorch,Keras Generator,Tensorflow2.0的实现方式参考我的其他博文。import numpy as npimport tensorflow as tfimp原创 2020-10-20 11:09:32 · 252 阅读 · 0 评论