摘要: 参考:https://blog.csdn.net/u011253734/article/details/69525690 1、先在远程服务器上安装ipython和jupyter 在我的CentOS7 服务器上,yum install -y ipython安装ipython,pip install j 阅读全文
posted @ 2018-06-07 23:09 蔺小渊 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1、方法很简单:在安装好anaconda的前提下,直接用命令conda install tensorflow-gpu==1.4.1即可,其中1.4.1是版本号,可修改。 2、conda安装包如果没有指定设定的虚拟环境是直接安装在root下的,环境管理:conda env list, conda en 阅读全文
posted @ 2018-03-19 11:04 蔺小渊 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 关于LSTM及RNN的基础知识以及相关的数学推导这篇博客介绍的很好,其中还包括神经网络的其他基础内容。 RNN循环神经网络:https://www.zybuluo.com/hanbingtao/note/541458 LSTM长短时记忆网络:https://zybuluo.com/hanbingta 阅读全文
posted @ 2018-01-31 11:17 蔺小渊 阅读(1618) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/cosmoshua/article/details/76644029 之前是按照ppa的源来做,出现缺少依赖的情况,也不知道自己实际应该安装哪个版本,最终安装失败。 实测用这个下载驱动安装的方法更好,成功安装。版本16.04LTS 查了许多博客,关于依赖错误 阅读全文
posted @ 2018-01-18 22:06 蔺小渊 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 一、结巴分词参考资料: http://blog.csdn.net/u010454729/article/details/40476483 二、nltk参考资料: http://www.shareditor.com/blogshow?blogId=64这篇博文包括基本用法,但并没有如何加载自己分词后的 阅读全文
posted @ 2018-01-08 14:45 蔺小渊 阅读(2011) 评论(0) 推荐(0) 编辑
摘要: 1、首先是利用scrapy startproject Santi建立一个项目,项目每个文件的含义其他的博客中已经很清楚了。 参考:https://cuiqingcai.com/3472.html 需要注意文件名命名的时候:spider文件夹里面的主Python文件不能和项目名重复,例如我的项目名称是 阅读全文
posted @ 2017-12-29 10:44 蔺小渊 阅读(439) 评论(1) 推荐(0) 编辑
摘要: Palindrome Number 问题描述如下: Determine whether an integer is a palindrome. Do this without extra space. 关键在不占用额外的空间的情况下生成它的回文序列,然后作差即可。 如果相等,说明回文,如果不相等说明 阅读全文
posted @ 2017-09-28 21:59 蔺小渊 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Count and Say The count-and-say sequence is the sequence of integers with the first five terms as following: 1 is read off as "one 1" or 11.11 is read 阅读全文
posted @ 2017-09-28 21:30 蔺小渊 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Median of Two Sorted Arrays 问题描述如下: There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays 阅读全文
posted @ 2017-09-26 20:26 蔺小渊 阅读(140) 评论(0) 推荐(0) 编辑
摘要: ZigZag Conversion 问题描述如下: The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display thi 阅读全文
posted @ 2017-09-25 00:00 蔺小渊 阅读(328) 评论(0) 推荐(0) 编辑