我正在尝试使用 python 连接 IBM Watson NLU,但下面的代码已过时,因为今天我为 IBM NLU 创建了新的资源组,然后我试图找出凭据,但没有得到用户名和密码。
有新的东西。请检查下图。
natural_language_understanding = NaturalLanguageUnderstandingV1(
url=<URL>,
version='2018-03-16',
username=<UserName>,
password=<Password>)
natural_language_understanding.disable_SSL_verification()
try:
response = natural_language_understanding.analyze(
text=str(user_answer_sent),
features=Features(
semantic_roles=SemanticRolesOptions(),
sentiment=SentimentOptions()
), language='en'
).get_result()
我无法找到 IBM Watson NLU 的最新语法。如果你有请告诉我,然后我会试试。