机器学习
文章平均质量分 84
codebrid
公众号:NLP_codebrid | NLP笔记屋
展开
-
人工智能+Python
循序渐进 学透"人工智能+Python"python核心编程1、掌握Python高级编程,能进行面向对象设计;2、了解Linux系统编程原理,认知程序运行的本质,方便后期开发出高质量的程序;3、掌握网络编程协议,实现网络间点对点通信;4、掌握关系型数据库MySql开发,熟练编写SQL语句;5、掌握正则表达式,进行字符串模糊匹配6、掌握shell脚本编程7、掌原创 2017-08-27 10:29:06 · 1259 阅读 · 0 评论 -
image_caption论文及数据集
还不了解image caption的新同学,这里有paperweekly的slides:http://slides.com/walkingdead526/deck#/ paperweekly论文推荐:http://blog.csdn.net/c9yv2cf9i06k2a9e/article/details/786641701. SCA-CNN: Spatial and Channel-wi...原创 2018-01-17 16:04:34 · 5757 阅读 · 2 评论 -
MURA数据集--医疗影像--斯坦福
几个链接:=====stanford ML group 官网 https://stanfordmlgroup.github.io/ 【里面有很多数据集(MURA用于骨x射线异常检测、Countdown Regression、CheXNet胸部x光诊断放射性肺炎、Palliative Care缓和医疗资源、Education检测书写错误并提供反馈、Arrhythmia心电图信号检测心律失...原创 2018-08-06 21:10:27 · 6525 阅读 · 1 评论 -
Unsupervised Abstractive Meeting Summarization...论文笔记
1. 论文信息Unsupervised Abstractive Meeting Summarization with Multi-Sentence Compression and Budgeted Submodular MaximizationACL 20182. 相关工作(本文使用到了以下工作内容)•Multi-Sentence CompressionGraph (MSCG) ...原创 2018-11-29 16:38:40 · 957 阅读 · 3 评论 -
【error】ImportError: cannot import name 'rnn_cell'
报错信息:【error】ImportError: cannot import name 'rnn_cell' 出错句:from tensorflow.python.ops import rnn_cell 检查过程:>>>import tensorflow as tf>>>tf.__version__得到本机版本为'1.0.1' ...原创 2018-12-06 15:36:36 · 4998 阅读 · 0 评论 -
深度学习中随机种子的初始化
1. gpu:torch.cuda.manual_seed(args.seed)2. cpu:torch.manual_seed(args.seed)3. random:random.seed(args.seed)4. numpy:numpy.random.seed(args.seed)同时进行原创 2018-12-19 21:04:04 · 4364 阅读 · 0 评论 -
NLP领域的CNN如何操作?
NLP领域的一种CNN操作是:对于输入的句子x做卷积,代码举例如下:x = [conv(x.permute(0,2,1)) for conv in self.convs] # 1x = [F.max_pool1d(i, i.size(2)).squeeze(2) for i in x] # 2x = torch.cat(x,1) ...原创 2019-01-27 16:41:55 · 568 阅读 · 0 评论 -
使用Pointer Network做抽取式摘要
记录一下Pointer Network 相关博客及学习过程,主要记录学习如何使用Pointer Network做抽取式摘要一、参考博客https://www.jianshu.com/p/2ad389e91467 详细讲解了一份tf代码https://blog.csdn.net/qq_20135597/article/details/83586694 翻译了这篇论文的前半部分http...原创 2019-01-19 14:10:00 · 2301 阅读 · 0 评论 -
python中的numel()函数
numel()函数:返回数组中元素的个数使用例子:params = sum(p.numel() for p in list(net.parameters())) / 1e6 # numel()print('#Params: %.1fM' % (params))net.parameters():是Pytorch用法,用来返回net网络中的参数params:用来返回net网络中的参...原创 2019-02-03 15:44:16 · 60680 阅读 · 3 评论 -
ValueError: not enough values to unpack (expected 2, got 1)
ValueError: not enough values to unpack (expected 2, got 1)原创 2017-12-13 11:08:11 · 13351 阅读 · 0 评论 -
【error】RuntimeError: tried to construct a tensor from a nested int sequence, but found an item
报错信息:RuntimeError: tried to construct a tensor from a nested int sequence, but found an item of type float at index (0, 0, 0)我的出错代码是:in_words_ = Variable(torch.LongTensor(in_words).view(batch_size,...原创 2017-12-10 19:09:25 · 1415 阅读 · 0 评论 -
ubuntu安装机器学习环境
ubuntu安装tensorflowhttp://www.cnblogs.com/ljy2013/p/5491680.html同下内容一样http://www.linuxidc.com/Linux/2016-05/131568.htm本步骤没有遇到问题(我使用pip,先安装pip)。(我的UBUNTU 安ten32位) PS:前辈们踩坑的可能原因和解决方法http://blog.csd原创 2017-08-27 10:29:15 · 834 阅读 · 0 评论 -
Python爬虫0.1
国内使用scrapy框架不算很广泛,scrapy库的安装也较为麻烦。官网:https://scrapy.org/实验楼的教程课程预览:https://www.shiyanlou.com/courses/763/labs/2555/documenthttps://www.shiyanlou.com/courses/763 记几个鬼错误:1. 无论什么代码只要有'('就会出现:原创 2017-08-27 10:29:18 · 596 阅读 · 0 评论 -
Python爬虫0.2
【http://blog.csdn.net/pleasecallmewhy/article/details/8924889】笔记:urllib2中的两个个方法:infoand geturl urllib2_test10.py来比较一下原始URL和重定向的链接:[python] view plain copyfrom urllib2 import Request原创 2017-08-27 10:29:20 · 267 阅读 · 0 评论 -
python爬虫0.3
爬取整个网页whole2html_simple.py这是一个神秘博士贴子只有一页http://tieba.baidu.com/p/5260095920试一下程序:显示404,因为输入时没在末尾输入 ?pn= 此参数有关(对于只一页的,pn=X都是当前页)添加后成功。这是一个神秘博士贴子有几十页http://tieba.baidu.com/p/4052795843?pn=试一下:该原创 2017-08-27 10:29:23 · 221 阅读 · 0 评论 -
PyTorch入门(2)
PyTorch深度学习:60分钟入门(Translation) : 文章来源: http://blog.csdn.net/scutjy2015/article/details/71214928 此处笔记: # 特别注明:任何可以改变tensor内容的操作都会在方法名后加一个下划线'_' 例如:x.copy_(y), x.t_(),y.add_(x) 都会改变x原创 2017-10-30 15:14:02 · 1040 阅读 · 0 评论 -
pytorch入门(3)pytorch-seq2seq模型
pytorch入门(3)pytorch-seq2seq模型原创 2017-11-02 18:19:40 · 5875 阅读 · 0 评论