我有一个600000条推文的数据集,想使用Microsoft Azure认知服务进行情绪分析。我有一个密钥和端点,每个请求中限制为5000个请求和1000条记录。我测试了4种不同的方式:
1-PowerBI:问题是在每个请求中它只发送一条记录。所以我的限制将在5000张唱片之后结束。
2-R中的"mscstexta4r"库:问题是它给出了404错误。我无法绕过这个错误。
3-https://northeurope.dev.cognitive.microsoft.com/docs/services/TextAnalytics.V2.0/operations/56f30ceeeda5650db055a3c9/console
有了我的证书,它就行了。问题是,我无法迭代60万条记录,每次1000条记录。
4-邮差。它也适用于邮递员,但同样的问题是,我不知道如何迭代60万条记录,每次1000条记录。
你能告诉我如何使用poster迭代我的记录吗?或者有更简单的方法吗?
请求主体的示例是:
{"documents":
[{"id":20001,"text":"hey volkswagen fans next my ride my story for will be
this vw microbus from framingham htt","language":"en"},
{"id":20002,"text":"volkswagen just re released everyone favourite hippy
van now it electric","language":"en"},{"id":20003,"text":"volkswagen ceo
we will have transformed all of our new cars into smaphones on wheels
connectedcar","language":"en"}]
}
我是用Python完成的。检查https://learn.microsoft.com/en-us/azure/cognitive-services/text-analytics/quickstarts/python为指导方针。