1 Star 0 Fork 1

杉叶/CNN-text-Classifier

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
demo.py 554 Bytes
一键复制 编辑 原始数据 按行查看 历史
unknow1216 提交于 2020-12-29 20:46 . 完成模型,但尚未优化
import pandas as pd
from numpy import *
import numpy as np
def readFlie(path): #读取一个样本的记录,默认一个文件一条样本
with open(path,'r',errors='ignore') as file:
content = file.read()
file.close()
return content
def readList(path): #读取一个csv,输出样本列表,元素形式[{"title"}...]
data = pd.read_csv(path,encoding='utf-8')
col = data["标题"]
sample_list = np.array(col)
return sample_list
main = readList('.\\total\\地区级\\city.csv')[:10]
print(main)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chinese-fir-leaves/cnn-text-classifier.git
git@gitee.com:chinese-fir-leaves/cnn-text-classifier.git
chinese-fir-leaves
cnn-text-classifier
CNN-text-Classifier
master

搜索帮助