Reputation: 81
I cannot get any results by making calls such as https://api.projectoxford.ai/academic/v1.0/evaluate?expr=Ti=='Role-based access control models'&model=latest&count=10&offset=0&attributes=Id,Ti,E
However, using the example in https://www.microsoft.com/cognitive-services/en-us/academic-knowledge-api/documentation/QueryExpressionSyntax i am getting a result api.projectoxford.ai/academic/v1.0/evaluate?expr=Ti=='indexing by latent semantic analysis'&model=latest&count=10&offset=0&attributes=Id,Ti,E
Upvotes: 1
Views: 105
Reputation: 71
Thanks for your interest in Microsoft cognitive services!
Currently for performance reasons search of titles, author names, affiliations, fields of studies is performed in lower case. All special characters (like: .,?!:+-/ etc.) should be omitted.
Please, try this query:
https://api.projectoxford.ai/academic/v1.0/evaluate?expr=Ti=='role based access control models'&model=latest&count=10&offset=0&attributes=Id,Ti
Output should be:
{
"expr": "Ti=='role based access control models'",
"entities": [
{
"logprob": -15.613,
"Id": 2166602595,
"Ti": "role based access control models"
},
{
"logprob": -18.504,
"Id": 1538515919,
"Ti": "role based access control models"
},
{
"logprob": -22.014,
"Id": 2000674581,
"Ti": "role based access control models"
}
]
}
Upvotes: 1