如何从Microsoft学术API的会议中获取论文



我已经使用Microsoft学术 Knoledge API 一周了,直到现在我才遇到任何问题。我想从会议中获得所有论文,例如ICLR或ICML。我正在尝试从"解释"方法获得的以下查询:

'expr': "Composite(C.CN=='iclr')",
'model': 'latest',
'count': '100',
'offset': '0',
'attributes': 'Ti,D,C.CN,AA.AuN,AA.AfN,F.FN,CC',

但我只得到一篇论文,而不是一系列结果:

{'authors': 'Karen Simonyan, Andrew Zisserman', 'affiliations': 'University Of Oxford, University Of Oxford', 'citations': 3249, 'fields': 'Theoretical Computer Science, Computer Vision, Machine Learning, Computer Science'}

有没有办法一次获得所有结果?

非常感谢。

您可以使用count字段来调整要查看的项目数。

例如,下面显示了 100 个结果(按年份降序排列 - 请注意count=100&orderby=Y:desc(:

https://api.labs.cognitive.microsoft.com/academic/v1.0/evaluate?&expr=Composite(C.CN==%27iclr%27(&count=100&orderby=Y:desc&attributes=Ti,D,C.CN,AA.AuN,AA.AfN,F.FN,CC&subscription-key={YOUR-KEY}

相关内容

  • 没有找到相关文章

最新更新