
keras
zaf赵
这个作者很懒,什么都没留下…
展开
-
Keras多GPU模型训练
from keras.callbacks import TensorBoard, ModelCheckpoint from keras.utils import multi_gpu_model # 导入keras多卡函数 class ParallelModelCheckpoints(ModelCheckpoint): # 在保存模型时,由于存在两个模型,所以需要指定model,\ ...原创 2020-10-09 09:43:54 · 311 阅读 · 0 评论 -
tensorflow与pytorch必收藏的中文学习网站
1.深度学习 https://github.com/scutan90/DeepLearning-500-questions https://github.com/imhuay/Algorithm_Interview_Notes-Chinese https://github.com/fengdu78/deeplearning_ai_books https://github.com/fromb...原创 2019-06-26 15:09:14 · 322 阅读 · 0 评论 -
conda安装制定版本Tensorflow或者Keras
一、设置国内源 在更新包的时候,默认源速度较慢,可以使用国内源 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes 二、安装指定版本的TensorFlow或者Keras 1. 首先在...原创 2019-06-26 17:42:39 · 3384 阅读 · 0 评论 -
Keras入门指南Keras入门指南
Keras框架介绍 在用了一段时间的Keras后感觉真的很爽,所以特意祭出此文与我们公众号的粉丝分享。 Keras是一个非常方便的深度学习框架,它以TensorFlow或Theano为后端。用它可以快速地搭建深度网络,灵活地选取训练参数来进行网路训练。总之就是:灵活+快速! 安装Keras 首先你需要有一个Python开发环境,直接点就用Anaconda,然后在CMD命令行中安装: # ...原创 2019-09-11 17:31:10 · 279 阅读 · 0 评论