• 大小: 5.22MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-01
  • 语言: 其他
  • 标签: 情感分析  

资源简介

该语料共包含中文和英文两种语言,主要是商品评论,评论篇幅都比较短,可以被应用于篇章级或者句子级的情感分析任务。数据集被分为训练数据、测试数据、带标签的测试数据三个文件,共有正向和负向两种极性。 情感分析资源大全:http://blog.csdn.net/qq280929090/article/details/70838025

资源截图

代码片段和文件信息

#! /usr/bin/env python
#coding=utf-8
from __future__ import division
import copy
import sys

path=sys.argv[1]
reader=open(path‘rb‘)
lines_1=reader.read().split(‘\n‘)
lines=[]
for line in lines_1:
    line_temp=copy.deepcopy(line)
    if len(line_temp.strip())<>0:
       lines.append(line)
reader.close()
output=open(r‘check.txt‘‘w‘)
right=True
if len(lines)<>2500:
    print ‘row count error.‘
    
    right=False
for iline in enumerate(lines):
    str_list=line.split()
    if len(str_list)<>4:
        print ‘column count error at row %d‘ %i
        exit()
        
        right=False
    try:
        id=int(str_list[1])
    except:
        print ‘2nd column at row %d must be interger‘ %i
        
        right=False
    try:
        sample_id=int(str_list[2])
        if(sample_id>=2500 or sample_id <0):
            print ‘id number error at row %d‘ %i
          
            right=False
    except:
        print ‘3rd column at row %d must be interger‘ %i
       
        right=False
    if str_list[3]<>‘negative‘ and str_list[3]<>‘positive‘:
        print ‘4th column at row %d must be positive or negative‘ %i
      
        right=False
if right:
    print ‘check passed...‘
  
    
    
    
        

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-01-21 16:09  NLPCC2014评估任务2_基于深度学习的情感分类\
     目录           0  2018-01-21 16:06  NLPCC2014评估任务2_基于深度学习的情感分类\test\
     文件         776  2014-05-23 10:54  NLPCC2014评估任务2_基于深度学习的情感分类\test\README.txt
     文件        1274  2014-05-23 10:51  NLPCC2014评估任务2_基于深度学习的情感分类\test\check_format.py
     目录           0  2018-01-21 16:06  NLPCC2014评估任务2_基于深度学习的情感分类\test\submission_sample\
     目录           0  2018-01-21 16:06  NLPCC2014评估任务2_基于深度学习的情感分类\test\submission_sample\TeamN_Submission\
     文件          58  2014-05-21 10:48  NLPCC2014评估任务2_基于深度学习的情感分类\test\submission_sample\TeamN_Submission\TeamN_1_CN.txt
     文件          58  2014-05-21 10:48  NLPCC2014评估任务2_基于深度学习的情感分类\test\submission_sample\TeamN_Submission\TeamN_1_EN.txt
     文件      532235  2014-05-21 10:38  NLPCC2014评估任务2_基于深度学习的情感分类\test\test.cn.txt
     文件     1893201  2014-05-21 10:37  NLPCC2014评估任务2_基于深度学习的情感分类\test\test.en.txt
     目录           0  2018-01-21 16:05  NLPCC2014评估任务2_基于深度学习的情感分类\test_with_label\
     文件      559732  2014-06-24 10:26  NLPCC2014评估任务2_基于深度学习的情感分类\test_with_label\test.label.cn.txt
     文件     1938680  2014-06-24 10:26  NLPCC2014评估任务2_基于深度学习的情感分类\test_with_label\test.label.en.txt
     目录           0  2014-05-06 10:29  NLPCC2014评估任务2_基于深度学习的情感分类\trian\
     目录           0  2018-01-21 16:03  NLPCC2014评估任务2_基于深度学习的情感分类\trian\cn_sample_data\
     文件     1078082  2014-05-06 10:29  NLPCC2014评估任务2_基于深度学习的情感分类\trian\cn_sample_data\sample.negative.txt
     文件     1067415  2014-05-06 10:29  NLPCC2014评估任务2_基于深度学习的情感分类\trian\cn_sample_data\sample.positive.txt
     目录           0  2018-01-21 16:03  NLPCC2014评估任务2_基于深度学习的情感分类\trian\en_sample_data\
     文件     4135659  2014-05-13 13:26  NLPCC2014评估任务2_基于深度学习的情感分类\trian\en_sample_data\sample.negative.txt
     文件     3451626  2014-05-13 13:26  NLPCC2014评估任务2_基于深度学习的情感分类\trian\en_sample_data\sample.positive.txt

评论

共有 条评论