
Theano
Theano
_沧海桑田_
ACL/NAACL/EMNLP/COLING审稿人,
MOD大侠梦/MOD禾下霸业作者。
github.com/guotong1988
展开
-
theano reshape -1
import theano import numpy as npones = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]]))print(ones.get_value())print(ones.reshape([1,-1]).eval())print(ones.reshape((1,-1)).eval())print(ones.reshape(原创 2017-02-17 15:16:31 · 1912 阅读 · 0 评论 -
theano dimshuffle 实例
import theano import numpy as np ones = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]])) temp = ones.dimshuffle([0,1,'x']) print(temp.eval()) temp = ones.dimshuffle([0,1]) print(temp.eval()) temp =原创 2017-08-21 10:01:05 · 1215 阅读 · 0 评论 -
theano T.arange 实例
import theano import numpy as np import theano.tensor as T ones = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]])) temp = T.arange(ones.shape[0]) print(temp.eval())结果 [0 1 2]原创 2017-08-09 16:23:07 · 1702 阅读 · 1 评论 -
theano scan 实例
import theano import numpy as npones1 = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]])) ones2 = theano.shared(np.float32([[9,8,7],[6,5,4],[3,2,1]]))print(ones1.eval())outputs, updates = theano.sca原创 2017-02-20 21:11:10 · 563 阅读 · 0 评论 -
theano scan 实例
import theano import numpy as npones = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]]))print(ones.eval())outputs, updates = theano.scan(lambda result : result + 1, se原创 2017-02-20 20:58:45 · 667 阅读 · 0 评论 -
theano实现RNN(GRU和LSTM)
https://github.com/MarkWuNLP/MultiTurnResponseSelection/blob/master/src/RNN.py转载 2017-08-09 13:58:14 · 880 阅读 · 0 评论 -
theano T.dot 实例 (是tf.matmul而不是点乘)
import theano import numpy as np import theano.tensor as T ones = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]]))print(ones.get_value())result = T.dot(ones,ones)print(result.eval())结果:[[ 1. 2. 3原创 2017-08-08 17:15:14 · 3316 阅读 · 0 评论 -
theano scan arange shape 实例
import theano import numpy as np import theano.tensor as Tones1 = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]]))ones2 = theano.shared(np.float32([[9,8,7],[6,5,4],[3,2,1]]))print(ones1.eval())prin原创 2017-02-20 21:15:06 · 851 阅读 · 0 评论 -
theano concatenate 实例
import theano import numpy as np import theano.tensor as T ones = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]]))print(ones.get_value())result = T.concatenate([ones,ones],axis=0)print(result.eval(原创 2017-02-20 14:03:19 · 2553 阅读 · 0 评论 -
theano stack 实例
import theano import numpy as np import theano.tensor as T ones = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]]))print(ones.get_value())result = T.stack([ones,ones],axis=0)print(result.eval())resu原创 2017-02-20 13:54:51 · 1351 阅读 · 0 评论 -
theano T.col 实例
import theano import numpy as np import theano.tensor as T numbers = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]])) numbers2 = T.col("temp_col",'float32') temp = numbers+numbers2train = theano.fu原创 2017-08-21 10:30:52 · 341 阅读 · 0 评论