当前位置:   article > 正文

java hanlp 情感分析实现

java hanlp 情感分析

1,java 训练model

//数据取自mysql
 public void TrainHanlpModel(Map<String, String[]> map) throws IOException {
        IClassifier classifier = new NaiveBayesClassifier();
        classifier.train(map);
        NaiveBayesModel model = (NaiveBayesModel) classifier.getModel();
        IOUtil.saveObjectTo(model, path);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

获取path

 public static IClassifier classifier;

    {
        path=getInputPath()+"\\emtionModel.ser";
    }
private String getInputPath() {
        File path = null;
        try {
            path = new File(ResourceUtils.getURL("classpath:").getPath());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        if (!path.exists()) path = new File("");
        File input = new File(path.getAbsolutePath(), "model/");
        if (!input.exists()) input.mkdirs();
        return input.getAbsolutePath();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

2,调用训练以后的model

// 这里没使用啥注入, 纯粹写写demo测试使用。。
 public  String hello(String txt) throws SQLException {
        // 读取model
         ConnectionMysql connectionMysql = new ConnectionMysql();
        connectionMysql.Connection();
        //String ret=  connectionMysql.GetModelStr();
        String ret="";
        GetHanlpTest glt = new GetHanlpTest();
        if(ret!=null||ret.length()>0)
        {
            IClassifier classifier =glt.GetIClassifier(glt.GetNaiveBayesModelByStr());
            ret= classifier.classify(txt);
        }
        return ret;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

获取mode 方法

IOUtil这个包为hanlp自带。

public NaiveBayesModel GetNaiveBayesModelByStr()
    {
        NaiveBayesModel model= new NaiveBayesModel();
        model=(NaiveBayesModel)IOUtil.readObjectFrom(path);
        return model;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

欢迎关注微信公众号
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/428045
推荐阅读
相关标签
  

闽ICP备14008679号