1

我已经使用Microsoft Academic 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'}

有没有办法一次得到所有的结果?

太感谢了。

4

1 回答 1

0

您可以使用该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}

于 2021-01-09T13:36:44.650 回答