Lately, some revisions are frequently returning an error instead of the expected ORES features and scores.
Here's the one that is in my test suite, which has intermittently been failing for the last week or so: https://ores.wikimedia.org/v2/scores/enwiki/wp10/641962088?features
{
"scores": {
"enwiki": {
"wp10": {
"scores": {
"641962088": {
"error": {
"message": "revoked",
"type": "TaskRevokedError"
}
}
},
"version": "0.5.0"
}
}
}
}Currently, it seems to work fine when the features param is not included: https://ores.wikimedia.org/v2/scores/enwiki/wp10/641962088
{
"scores": {
"enwiki": {
"wp10": {
"scores": {
"641962088": {
"prediction": "Stub",
"probability": {
"B": 0.05442654153740996,
"C": 0.0410184196903844,
"FA": 0.0030839593054811758,
"GA": 0.00289370787403999,
"Start": 0.11865341961498213,
"Stub": 0.7799239519777024
}
}
},
"version": "0.5.0"
}
}
}
}