归档: 2017

0

ACL2016情感分析和词向量论文整理

ACL2016Representation Learning Learning the Curriculum with Bayesian Optimization for Task-Specific Word Representation Learning Pointing the Unknown Words 这篇论文是用已有的信息来预测未登录词。可以一看 Literal and Metaph

0

wordpress网站搭建

WordPress + ceph网站搭建requirment 阿里云主机 ceph wordpress框架 目标搭建出一个前端基于wordpress,后端基于ceph的视频点播网站 配置单机版ceph下面是这个作业的重头戏,就是配置ceph 安装ceph-deploy这是一个专门用于配置ceph的工具123wget -q -O- 'https://download.ceph.com/keys/r

0

Linguistically Regularized LSTMs for Sentiment Classification

Abstract本文主要目的是为了产生linguistically coherent representations,其中使用了sentiment lexicons, negation words, 和intensity words。 Introduction让计算机能够理解情感一直是AI的核心任务,有许多方法来实现,比如lexicon-based classification以及早期的machi

0

Adaptive Joint Learning of Compositional and Non-Compositional Phrase Embeddings

Introduction这篇论文主要是要解决英文短语的词向量表示问题,英语的词向量可以分成两种,一种是compositional,另一种是non-compositional。前者的短语语义就是组成单词的叠加,而后者则会产生完全不同的意思。本文引入了一个score function来度量一个短语的compositional的程度。 完全依赖non-compositional embedding会产生

0

Dont Count Predict An Automatic Approach to Learning Sentiment Lexicons for Short Text

Abstract这是一片发表在ACL2016上的短文,看名字就知道是关于如何自动化构建情感词表的文章。使用了一个神经网络的方法,并且不使用任何人工标注的资源。这个方法的灵感来自于NRC方法,NRC方法在SemEval13中利用了大量推特中的emoticons来获得了最好的结果,这个文章中的方法使用了词和推特情感的互信息来定义词的情感属性。 Introduction在所有的自动化方法中,Mohamm

0

MXNet入门

The basic创建矩阵123import mxnet as mxa=mx.nd.array([1,2,3])b=mx.nd.array([1,2,3],[2,3,4]) 或者也可以通过numpy.ndarray来创建123456import numpy as npimport mathc = np.arange(15).reshape(3,5)# create a 2-dimensional