资源简介
基于LDA文本分类的python实现版本
代码片段和文件信息
import os
from itertools import izip
import re
# read and organize data
#3 2:3 4:5 5:3 --- document info (word: count)
class document:
‘‘‘ the class for a single document ‘‘‘
def __init__(self):
self.words = []
self.counts = []
self.length = 0
self.total = 0
class corpus:
‘‘‘ the class for the whole corpus‘‘‘
def __init__(self):
self.size_vocab = 0
self.docs = []
self.num_docs = 0
def read_data(self filename):
if not os.path.exists(filename):
print ‘no data file please check it‘
return
print ‘reading data from %s.‘ % filename
for line in file(filename):
ss = line.strip().split()
if len(ss) == 0: continue
doc = document()
doc.length = int(ss[0])
doc.words = [0 for w in range(doc.length)]
doc.counts = [0 for w in range(doc.length)]
for w pair in enumerate(re.finditer(r“(\d+):(\d+)“ line)):
doc.words[w] = int(pair.group(1))
doc.counts[w] = int(pair.group(2))
doc.total = sum(doc.counts)
self.docs.append(doc)
if doc.length > 0:
max_word = max(doc.words)
if max_word >= self.size_vocab:
self.size_vocab = max_word + 1
self.num_docs = len(self.docs)
print “finished reading %d docs.“ % self.num_docs
# def read_data(filename):
# c = corpus()
# c.read_data(filename)
# return c
def read_stream_data(f num_docs):
c = corpus()
splitexp = re.compile(r‘[ :]‘)
for i in range(num_docs):
line = f.readline()
line = line.strip()
if len(line) == 0:
break
d = document()
splitline = [int(i) for i in splitexp.split(line)]
wordids = splitline[1::2]
wordcts = splitline[2::2]
d.words = wordids
d.counts = wordcts
d.total = sum(d.counts)
d.length = len(d.words)
c.docs.append(d)
c.num_docs = len(c.docs)
return c
# This version is about 33% faster
def read_data(filename):
c = corpus()
splitexp = re.compile(r‘[ :]‘)
for line in open(filename):
d = document()
splitline = [int(i) for i in splitexp.split(line)]
wordids = splitline[1::2]
wordcts = splitline[2::2]
d.words = wordids
d.counts = wordcts
d.total = sum(d.counts)
d.length = len(d.words)
c.docs.append(d)
if d.length > 0:
max_word = max(d.words)
if max_word >= c.size_vocab:
c.size_vocab = max_word + 1
c.num_docs = len(c.docs)
return c
def count_tokens(filename):
num_tokens = 0
splitexp = re.compile(r‘[ :]‘)
for line in open(filename):
splitline = [int(i) for i in splitexp.split(line)]
wordcts = splitline[2::2]
num_tokens += sum(wordcts)
return num_tokens
splitexp = re.compile(r‘[ :]‘)
def parse_line(line):
line
相关资源
- 二级考试python试题12套(包括选择题和
- pywin32_python3.6_64位
- python+ selenium教程
- PycURL(Windows7/Win32)Python2.7安装包 P
- 英文原版-Scientific Computing with Python
- 7.图像风格迁移 基于深度学习 pyt
- 基于Python的学生管理系统
- A Byte of Python(简明Python教程)(第
- Python实例174946
- Python 人脸识别
- Python 人事管理系统
- 基于python-flask的个人博客系统
- 计算机视觉应用开发流程
- python 调用sftp断点续传文件
- python socket游戏
- 基于Python爬虫爬取天气预报信息
- python函数编程和讲解
- Python开发的个人博客
- 基于python的三层神经网络模型搭建
- python实现自动操作windows应用
- python人脸识别(opencv)
- python 绘图(方形、线条、圆形)
- python疫情卡UN管控
- python 连连看小游戏源码
- 基于PyQt5的视频播放器设计
- 一个简单的python爬虫
- csv文件行列转换python实现代码
- Python操作Mysql教程手册
- Python Machine Learning Case Studies
- python获取硬件信息
评论
共有 条评论