
tensorflow
XS_
这个作者很懒,什么都没留下…
展开
-
activate function 激励函数
使得神经网络模型为非线性多层神经网络需要慎重选择,有可能出现梯度爆炸和梯度消失默认首选函数卷积神经网络,relu循环神经网络,tanh or relu原创 2020-09-13 13:14:42 · 197 阅读 · 0 评论 -
github-lanenet-lane-detection学习
https://github.com/MaybeShewill-CV/lanenet-lane-detectionUse tensorflow to implement a Deep Neural Network for real time lane detection mainly based on the IEEE IV conference paper “Towards End-to-End Lane Detection: an Instance Segmentation Approach”.You原创 2020-07-13 22:08:41 · 905 阅读 · 1 评论 -
基于Deeplab的CamVid语义分割
1,下载CamVid数据集:http://mi.eng.cam.ac.uk/research/projects/VideoRec/CamVid/2,数据集理解test 测试集testannot 测试集标签train 训练集trainannot 训练集标签val 验证集valannot 验证集标签对于CamVid, 其中训练集、测试集、验证集中的图片数目分别为train 367, test 233,val 101。制作指引文件在制作TFRecord之前,需要有原创 2020-09-15 16:16:08 · 1084 阅读 · 0 评论 -
TensorFlow入门
参考:http://www.tensorfly.cn/1 TensorFlowTensorFlow™ 是一个采用数据流图(data flow graphs),用于数值计算的开源软件库。节点(Nodes)在图中表示数学操作,图中的线(edges)则表示在节点间相互联系的多维数据数组,即张量(tensor)。它灵活的架构让你可以在多种平台上展开计算,例如台式计算机中的一个或多个CPU(或GPU...原创 2019-10-09 20:49:27 · 131 阅读 · 0 评论 -
部署DeepLab-v3-plus Semantic Segmentation in TensorFlow
DeepLab-v3-plus Semantic Segmentation in TensorFlow在TensorFlow中的DeepLab-v3-plus语义分割This repo attempts to reproduceEncoder-Decoder with Atrous Separable Convolution for Semantic Image Segmentation...原创 2019-10-14 20:17:28 · 1050 阅读 · 0 评论 -
LabelImg创建自己的数据集
github:https://github.com/tzutalin/labelImg安装:(anaconda)conda install pyqt=5pip install labelmelabelme启动后找到目标文件夹,在使用过程中发现,如果存在中文路径或中文名字的时候,会报编码相关的错,暂时还没有找到解决方法,因此文件中不要出现中文。打开如下页面使用步骤(PascalVOC) 运行主程序. 点击 'Change save dir ' ,设置图像标记...原创 2020-05-15 23:45:47 · 695 阅读 · 0 评论 -
win10安装CUDA10.0+ cuDNN 7.6.5+ Anaconda3 +tensorflow
官方教程:https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/硬件、软件要求1,表1. CUDA10.2中的Windows操作系统支持 操作系统 本机x86_64 十字架(x86_64上的x86_32) Windows 10 是 是 Windows 8.1 是 是 Windows 7 是 是 Windows Server 2019 ..原创 2020-05-15 15:21:53 · 3397 阅读 · 0 评论 -
Tensorflow 2.0.0 官网教程-初学者
载入程序并准备mnist数据集from __future__ import absolute_import, division, print_function, unicode_literals# 安装 TensorFlowimport tensorflow as tf#载入并准备好 MNIST 数据集。将样本从整数转换为浮点数mnist = tf.keras.datasets.mni...原创 2020-06-19 15:16:44 · 451 阅读 · 0 评论 -
tensorflow学习中遇到的问题
module 'tensorflow' has no attribute 'logging'or 'app' or'python_io' or 'Session'tf.compat.v1.xxxx以上都是由于TensorFlow的版本更新而带来的问题module 'tensorflow' has no attribute 'gfile'Replace all instance...原创 2019-10-14 20:41:11 · 227 阅读 · 0 评论