
tensorflow
志yu
慕尼黑工大机器人硕士 方向机器视觉
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jupyter notebook 安装下载处理conda环境
1.进入需要选择的环境source activate 环境名称2.下载环境modelconda install ipykernel3. 将环境写入notebook的kernel中python -m ipykernel install --user --name 环境名称 --display-name "Python (环境名称)"4.open jupyter notebookj...转载 2018-12-10 10:26:50 · 808 阅读 · 0 评论 -
tensorboard详解
1.填写普通的cnn网络 制作普通的网络# coding=UTF-8import warningswarnings.filterwarnings('ignore') # 不打印 warningimport tensorflow as tf# 设置GPU按需增长config = tf.ConfigProto()config.gpu_options.allow_growth = ...转载 2019-03-11 10:34:50 · 3571 阅读 · 0 评论