-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStep2_ToBunch.py
More file actions
executable file
·42 lines (37 loc) · 1.73 KB
/
Step2_ToBunch.py
File metadata and controls
executable file
·42 lines (37 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import os
import pickle
from sklearn.datasets.base import Bunch
from Tools import readfile
def seg2Bunch(segs):
bunch = Bunch(target_name=[], label=[], filenames=[], contents=[])
bunch.contents.append(segs)
return bunch
def corpus2Bunch(wordbag_path, seg_path):
catelist = os.listdir(seg_path) # 获取seg_path下的所有子目录,也就是分类信息
# 创建一个Bunch实例
bunch = Bunch(target_name=[], label=[], filenames=[], contents=[])
bunch.target_name.extend(catelist)
'''
extend(addlist)是python list中的函数,意思是用新的list(addlist)去扩充
原来的list
'''
# 获取每个目录下所有的文件
for mydir in catelist:
class_path = seg_path + mydir + "/" # 拼出分类子目录的路径
file_list = os.listdir(class_path) # 获取class_path下的所有文件
for file_path in file_list: # 遍历类别目录下文件
fullname = class_path + file_path # 拼出文件名全路径
bunch.label.append(mydir)
bunch.filenames.append(fullname)
bunch.contents.append(readfile(fullname)) # 读取文件内容
'''append(element)是python list中的函数,意思是向原来的list中添加element,注意与extend()函数的区别'''
# 将bunch存储到wordbag_path路径中
with open(wordbag_path, "wb") as file_obj:
pickle.dump(bunch, file_obj)
print("Build bunch.labelfinished")
def Step2_ToBunch():
wordbag_path = "train_word_bag/train_set.dat" # Bunch存储路径
seg_path = "train_corpus_seg/" # 分词后分类语料库路径
corpus2Bunch(wordbag_path, seg_path)