keras( 二)
        【摘要】      
 keras 中数据预处理 
 所有的函数都在keras.preprocessing 分别有text ,sequence, image 
 # 文字预处理txt = "My name is maoli.maoli don't like coding."1 
 文字预处理 
 
...
    
    
    
    keras 中数据预处理
所有的函数都在keras.preprocessing 分别有text ,sequence, image
# 文字预处理
txt = "My name is maoli.maoli don't like coding."
   
  - 1
文字预处理
- 文字拆分
- 建立索引
- padding(序列补齐)
- 标注
from keras.preprocessing.text import text_to_word_sequence # 文本转化序列
out = text_to_word_sequence(txt) # 默认lower=True,,
print(out)  # 与jieba 功能一样
   
  - 1
['my', 'name', 'is', 'maoli', 'maoli', 
   
  - 1
文章来源: maoli.blog.csdn.net,作者:刘润森!,版权归原作者所有,如需转载,请联系作者。
原文链接:maoli.blog.csdn.net/article/details/96574474
        【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
            cloudbbs@huaweicloud.com
        
        
        
        
        
        
        - 点赞
- 收藏
- 关注作者
 
             
           
评论(0)