
TensorFlow
nkszjx2
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
window10 TensorFlow-1.4 安装
1. 第一步首先需要去下载一个Python。用管理员身份打开cmd窗口,输入命令conda create --name python35 python=3.5,等待安装完成即可;注意:必须为3.5版本激活:activate python35释放deactivate#To activate this environment, use:# > activate python35## To dea...原创 2018-03-16 14:34:57 · 2047 阅读 · 0 评论 -
window下启动tensorboard
原文:http://blog.youkuaiyun.com/flying_sfeng/article/details/69943260tensorboard是TensorFlow的一个可视化工具,能够监控TensorFlow运行过程中的计算图,各种指标随着时间的变化趋势以及训练中使用到的图像等信息。先贴个总结:首先,必须在终端启动tensorboard;其次,如果在tensorboard中发现没找到graph...转载 2018-03-14 14:40:44 · 1045 阅读 · 0 评论 -
tensorflow从已经训练好的模型中,恢复(指定)权重
https://blog.youkuaiyun.com/AManFromEarth/article/details/79155926https://blog.youkuaiyun.com/ying86615791/article/details/76215363https://blog.youkuaiyun.com/ying86615791/article/details/76215363迁移学习的实现需要网络在其他数据集上做预训练...转载 2018-06-13 19:26:36 · 4101 阅读 · 0 评论 -
resnet 50模块参数索引文本
{'resnet_v2_50/block3/unit_3/bottleneck_v2/conv3/weights/ExponentialMovingAverage': [1, 1, 256, 1024], 'resnet_v2_50/block3/unit_5/bottleneck_v2/conv1/BatchNorm/moving_variance': [256], 'resnet_v2_...原创 2018-07-12 12:44:57 · 1372 阅读 · 0 评论 -
Tensorflow学习: AlexNet代码(slim版)
# Copyright 2016 The TensorFlow Authors. All Rights Reserved.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# ...转载 2018-08-11 20:31:05 · 514 阅读 · 1 评论 -
slim.conv2d 与opencv读取图像进行处理代码
转载 2018-08-11 20:39:47 · 614 阅读 · 0 评论 -
Tensorflow学习: AlexNet完整训练与测试代码
alexnet.py"""This is an TensorFLow implementation of AlexNet by Alex Krizhevsky at all.Paper:(http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf...翻译 2018-08-12 20:03:59 · 7106 阅读 · 2 评论 -
feature map大小计算方法
(1)边长的计算公式是: output_h =(originalSize_h+padding*2-kernelSize_h)/stride +1输入图片大小为200×200,依次经过一层卷积(kernel size 5×5,padding 1,stride 2),pooling(kernel size 3×3,padding 0,stride 1),又一层卷积(kernel size 3×...原创 2017-11-29 14:48:27 · 18596 阅读 · 0 评论