The Research team in collaboration with the ML-Platform team are creating a new service to help patrollers to detect revisions that might be reverted. (Check parent task).
This task is focused in a fully language-agnostic approach.
The Research team in collaboration with the ML-Platform team are creating a new service to help patrollers to detect revisions that might be reverted. (Check parent task).
This task is focused in a fully language-agnostic approach.
| Status | Subtype | Assigned | Task | ||
|---|---|---|---|---|---|
| Resolved | diego | T314384 Develop a ML-based service to predict reverts on Wikipedia(s) | |||
| Resolved | diego | T314385 Create a language agnostic model to predict reverts on Wikipedia | |||
| Resolved | diego | T314386 Create a multilingual model to predict reverts on Wikipedia | |||
| Duplicate | None | T329071 Integration of Revert Risk Scores to Recent Changes as a filter |
Updates
Updates
For the records here a snippet (by @achou) to try this model:
curl "https://inference.svc.codfw.wmnet:30443/v1/models/revert-risk-model:predict" -d @input.json -H "Host: revert-risk-model.experimental.wikimedia.org" --http1.1 -k
An example for input.json: { "lang": "ru", "rev_id": 123855516 }
Updates
Updates
Updates
Updates
Updates
@diego Is there an updated URL? I get 404 not found when I attempt to POST to this URL from mwmaint1002. (https://meta.wikimedia.org/wiki/Machine_learning_models/Proposed/Language-agnostic_revert_risk points to T314385#8496547 as the directions for testing out the model.)
Hi @kostajh, there is an updated URL as the model server has been moved to Lift Wing production.
curl "https://inference.discovery.wmnet:30443/v1/models/revertrisk-language-agnostic:predict" -d '{"rev_id": 123456, "lang": "en"}' -H "Host: revertrisk-language-agnostic.revertrisk.wikimedia.org" --http1.1 -kFor more information, please refer to the Lift Wing documentation: https://wikitech.wikimedia.org/wiki/Machine_Learning/LiftWing/Usage
Thanks! :)