Deep Learning
李亚超
自强不息,厚德载物;
专注于Deep Learning, Machine Translation, NLP;
喜欢写关于Linux C/C ,C#,算法,自然语言处理的技术博客,欢迎观临;
展开
-
theano.Tensor.lmatrix ,numpy.array , list 为空的判断方法
theano编程中,判断数据为空时很烦人的事,theano.Tensor.lmatrix ,numpy.array , list 为空的判断方法T.lmatrix有shape属性, numpy.array有shape属性,list没有shape属性。只有将list强制转为array,方法为:sa = numpy.array(value)这样sa.shape会是(x,)。通过这样原创 2016-11-29 19:32:52 · 8917 阅读 · 0 评论 -
theano.function、theano.scan 参数数据类型问题
theano.function、theano.scan 参数数据类型问题原创 2016-11-30 15:05:00 · 1933 阅读 · 0 评论 -
Deep Learning - Theano.scan 对比理解
scan是theano提供的一个循环结构,因为这种函数式的变成方法,导致很难理解内部运行过程。本文把scan与普通的for循环进行对比,方便大家理解这个功能的运行。原创 2016-11-19 18:59:11 · 976 阅读 · 0 评论 -
ubuntu 14 安装 cudnn 6.0
cudnn 安装过程相对独立,只需要对应的版本合适即可。安装步骤:1. sudo tar -xzvf cudnn-8.0-linux-x64-v6.0.tgz 2. sudo cp cuda/include/cudnn.h /usr/local/cuda/include 3. sudo cp cuda/lib64/libcudnn* /usr/local/cuda/lib64 查看结果...原创 2018-06-17 20:44:53 · 1103 阅读 · 0 评论 -
Tensorflow 错误信息记录
>>> import tensorflow as tfTraceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python2.7/dist-packages/tensorflow/__init__.py", line 2...原创 2018-06-17 20:50:11 · 1453 阅读 · 0 评论 -
Theano 错误信息记录
错误信息:Exception: ('The following error happened while compiling the node', GpuDnnSoftmax{tensor_format='bc01', mode='channel', algo='accurate'}(GpuContiguous.0), '\n', 'nvcc return status', 2, 'for cmd...原创 2018-06-17 20:52:57 · 1717 阅读 · 0 评论 -
gnmt 模型参数分析
# tensorflow/nmt的模型参数分析,配置为enc:2,dec:2,uni,bahdanau# src_emb:620, trg_emb:650, src_hid:1000, trg_hid:1200# Trainable variables embeddings/encoder/embedding_encoder:0, (30005, 620), /device:GPU:0...原创 2018-07-16 17:05:18 · 1316 阅读 · 0 评论