虽然网上的文章对BiLSTM-CRF模型介绍的文章有很多,但是一般对CRF层的解读比较少. 于是决定,写一系列专门用来解读BiLSTM-CRF模型中的CRF层的文章. 我是用英文写的,发表在了github pages上. 如果文章中有描述不对,不准确或者引起困惑的地方,欢迎随时发表评论. (全站目录:Table of Contents) 文章链接: (2017.09.15)标题:CRF Layer on the Top of BiLSTM - 1 Outline and Introduction
''' Created on 2017年4月22日 @author: weizhen ''' import os import tensorflow as tf import numpy as np from tensorflow.examples.tutorials.mnist import input_data # 加载mnist_inference.py中定义的常量和前向传播的函数 import LeNet5_infernece # 配置神经网络的参数 BATCH_SIZE = 100 L