百度智能云NLP的使用及文本相似度

百度智能云API 接口的使用应该说是很方便的。但是网上代码资源不多,还有运行不了的代码,误导了我很久。在此发文一篇,分享2021年12月30日可运行代码,并实现了对比两段事件描述文本相似度的功能。
import json,requests,os,re
from openpyxl import load_workbook
from time import sleep
import numpy as np

APIKey='*****'
SecretKey='*****'

def get_AccessToken():
accessToken = ''
#通过API Key和Secret Key获取access_token
AccessToken_url='https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id={}&client_secret={}'.format(APIKey,SecretKey)
res

百度智能云NLP的使用及文本相似度最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/11366.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>