资源简介
用tensorflow框架,深度学习中卷积神经网络cnn模型,对电影评论进行情感二分类。
代码片段和文件信息
import numpy as np
import tensorflow as tf
#Input: x
x_image = tf.placeholder(tf.float32shape=[55])
x = tf.reshape(x_image[1551])
#Filter: W
W_cpu = np.array([[111][0-10][0-11]]dtype=np.float32)
W = tf.Variable(W_cpu)
W = tf.reshape(W [3311])
#Stride & Padding
strides=[1 1 1 1]
padding=‘VALID‘
#Convolution
y = tf.nn.conv2d(x W strides padding)
x_data = np.array([[10000][21121][11220][22100][21211]]dtype=np.float32)
with tf.Session() as sess:
init = tf.initialize_all_variables()
sess.run(init)
x = (sess.run(x feed_dict={x_image: x_data}))
W = (sess.run(W feed_dict={x_image: x_data}))
y = (sess.run(y feed_dict={x_image: x_data}))
print “The shape of x:\t“ x.shape “\t and the x.reshape(55) is :“
print x.reshape(55)
print ““
print “The shape of x:\t“ W.shape “\t and the W.reshape(33) is :“
print W.reshape(33)
print ““
print “The shape of y:\t“ y.shape “\t and the y.reshape(33) is :“
print y.reshape(33)
print ““
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 501046 2016-07-03 21:57 code_cnn_recursive\cnn_sentiment.tar.gz
文件 11602452 2016-07-03 22:01 code_cnn_recursive\mnist.tar.gz
文件 7662 2016-07-03 22:15 code_cnn_recursive\recursive.tar.gz
文件 1105 2016-07-03 22:17 code_cnn_recursive\toy-example-cnn_2d.py
文件 771 2016-07-03 22:32 code_cnn_recursive\toy-example-max_pool.py
目录 0 2016-07-03 22:36 code_cnn_recursive\
相关资源
- Sanjeev Arora在ICML2018上关于深度学习理
- 分布式深度学习论文tensorflow的并行计
- 深度学习500问
- 吴恩达深度学习第五课序列模型作业
- 吴恩达卷积神经网络课件与笔记
- DeepLearning关于稀疏自编码器的资料
- 《深度学习之TensorFlow:入门、原理与
- 脑机接口导论.zip
- 卷积神经网络图像分类和检测必看论
- 深度学习(AI圣经).pdf+源码.
- hands-on machine learning with scikit-learn an
- 深度学习.zip
- protobuf-2.6.0以及protoc.exe
- 深度学习Deep Learning英文原版高清.pd
- Deep Learning深度学习(Bengio等著)中英
- 吴恩达-深度学习-改善深层神经网络课
- AI圣经pdf高清
- tensorFlow keras 深度学习 人工智能实践
- 《动手学深度学习》(Dive into Deep L
- Ian Goodfellow等人的Deep Learning 英文版含
- 吴恩达深度学习课程作业网易云上有
- word2vec词向量训练及中文文本相似度计
- LabelImg 图像标注工具 深度学习必备工
- 深度学习 AI圣经 deep learning-张志华-
- 基于CNN和SVM的猫狗识别
- 深度学习相关资料
- 网易云吴恩达深度学习工程师微专业
- 深度学习基础(FundamentalsofDeepLearnin
- 《深度学习之TensorFlow:入门、原理与
- AI圣经深度学习.rar
评论
共有 条评论