
tensorflow
wht@92
板砖者之一,做板砖中的一只努力汪!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
调用tensoflow出错
调用tensorflow出错使用TensorFlow时报错FutureWarning: Passing (type, 1) or ‘1type’ as a synonym of type is deprecated; in a future version of numpy…属于numpy版本过高,降低版本报错消失原创 2020-11-13 09:14:52 · 170 阅读 · 0 评论 -
tf AlexNet
# encoding:utf-8# author:wht@92from datetime import datetimeimport mathimport timeimport tensorflow as tf def print_activations(t): print(t.op.name, ' ', t.get_shape().as_list()) def inferen...原创 2019-12-30 16:04:33 · 213 阅读 · 0 评论 -
tf实现LeNet5
加载数据# encoding: utf-8# author : wht@92# LeNet5的tf的实现# 2019-11-28from tensorflow.examples.tutorials.mnist import input_dataimport tensorflow as tf mnist = input_data.read_data_sets('MNIST_data/'...原创 2019-11-28 20:39:47 · 309 阅读 · 0 评论 -
tf实现多层感知机
tf实现多层感知机使用数字数字集MNIST# encoding:utf-8# 多层感知机的tf实现# author : wht@92from tensorflow.examples.tutorials.mnist import input_dataimport tensorflow as tf 下载数据mnist = input_data.read_data_sets("MNIS...原创 2019-11-28 16:54:36 · 259 阅读 · 0 评论