会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
天生自然
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2019年6月26日
吴裕雄 python 神经网络——TensorFlow 卷积神经网络手写数字图片识别
摘要: import os import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data INPUT_NODE = 784 OUTPUT_NODE = 10 LAYER1_NODE = 500 def get_weight_variable(shape, regularizer): wei...
阅读全文
posted @ 2019-06-26 16:29 吴裕雄
阅读(734)
评论(0)
推荐(0)
编辑
吴裕雄 python 神经网络——TensorFlow 卷积神经网络水果图片识别
摘要: #-*- coding:utf-8 -*- import time import keras import skimage import numpy as np import tensorflow as tf import matplotlib.image as img from scipy import ndimage from skimage import color, data, tr...
阅读全文
posted @ 2019-06-26 15:53 吴裕雄
阅读(2116)
评论(0)
推荐(0)
编辑