命名实体识别案例解析
首先从GitHub下载该压缩包,找到战斗机实例
代码如下
*/*
* Han He
* me@hankcs.com
* 2018-07-29 8:49 PM
*
*
* Copyright © 2018, Han He. All Rights Reserved, http://www.hankcs.com/
* This source is subject to Han He. Please contact Han He for more information.
*
*/
* package com.hankcs.book.ch08;
import com.hankcs.hanlp.model.perceptron.*;
import com.hankcs.hanlp.model.perceptron.model.LinearModel;
import com.hankcs.hanlp.utility.TestUtility;
import java.io.IOException;
/*
** 《自然语言处理入门》8.6.2 训练领域模型*
** *配套书籍:http://nlp.hankcs.com/book.php
** *讨论答疑:https://bbs.hankcs.com/
*
* @author hankcs
* @see **《