自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (1)
  • 收藏
  • 关注

原创 基于编辑距离的中英文自动纠错

#!/usr/bin/env python3 # coding: utf-8 from pypinyin import * from editing_distance import auto_correct_ch, auto_correct_en from text_utils import is_chinese_string, is_alphabet_string import config ...

2019-01-02 10:18:46 802 1

原创 基于tflearn使用lstm实现文本分类

模型训练部分代码# -*- coding: utf-8 -*- from __future__ import division, print_function, absolute_import import tflearn import os import numpy import jieba import sys import random import re import fire from ...

2018-05-03 13:53:50 667

原创 卷积神经网络-----理解

1.训练数据与卷积核相应位置相乘求和。 2.边界处理:   (1).丢点边界,按照卷积后的矩阵。(2)把训练数据的边界拿过来。 matlab,tensorflow:FULL:edge_row = kernel_row-1;edge_cols=kernel_row-1;    SAME:edge -row=(kernel_row-1)/2;edge -clo=(kernel_row-1)/2;

2017-11-26 22:53:56 142

基于tflearn的cnn文本分类

基于tflearn的cnn文本分类 cnn代码

2018-12-17

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除