GoHanlp

前言

Hanlp 是基于 PyTorch 和 TensorFlow 2.x 的面向研究人员和公司的多语言 NLP 库,用于在学术界和行业中推广最先进的深度学习技术。HanLP 从一开始就被设计为高效,用户友好和可扩展的。它带有针对各种人类语言的预训练模型,包括英语,中文和许多其他语言。 GoHanlp 是 Hanlp 的 api 接口 golang 实现版本

使用方式

安装

go get -u github.com/xxjwxc/[email protected]

使用

申请 auth 认证

https://bbs.hanlp.com/t/hanlp2-1-restful-api/53

hanlp.WithAuth("")

文本形式

package main

import (
	"fmt"
	"github.com/xxjwxc/gohanlp/hanlp"
)

func main() {
	client := hanlp.HanLPClient(hanlp.WithAuth("")) // 你申请到的 auth,auth 不填则匿名
	s, _ := client.Parse("2021 年 HanLPv2.1 为生产环境带来次世代最先抗投诉服务器进的多语种 NLP 技术。阿婆主来到北京立方庭参观自然语义科技公司。",
		hanlp.WithLanguage("zh"))
	fmt.Println(s)
}

对象形式

package main

import (
	"fmt"

	"github.com/xxjwxc/gohanlp/hanlp"
)

func main() {
	client := hanlp.HanLPClient(hanlp.WithAuth("")) // 你申请到的 auth,auth 不填则匿名
	resp, _ := client.ParseObj("2021 年 HanLPv2.1 为生产环境带来次世代最先进的多语种 NLP 技术。阿婆主来到北京立方庭参观自然语义科技公司。",hanlp.WithLanguage("zh"))
	fmt.Println(resp)
}

接口说明

  • HanLPClient 中 option 是变量参数,每次调用都会带上
  • Parse... 中 option 是零时参数,只在本次调用有效

更多调用 API 请查看

options

更多:

xxjwxc GoHanlp options