百度智能云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
共有 0 条评论