Machine learning models/Production/Italian Wikipedia damaging edit
| Model card | |
|---|---|
| This page is an on-wiki machine learning model card. | |
A model card is a document about a machine learning model that seeks to answer basic questions about the model. | |
| Model Information Hub | |
| Model creator(s) | Aaron Halfaker (User:EpochFail) and Amir Sarabadani |
| Model owner(s) | WMF Machine Learning Team (ml@wikimediafoundation.org) |
| Model interface | Ores homepage |
| Code | ORES Github, ORES training data, and ORES model binaries |
| Uses PII | No |
| In production? | Yes |
| Which projects? | Italian Wikipedia |
| This model uses data about a revision to predict the likelihood that the revision is damaging. | |
Motivation
[edit]Some goodfaith edits are damaging to an article, and not all damaging edits are in bad faith. This model (together with a goodfaith model) is intended to differentiate between edits that are intentionally harmful (badfaith/vandalism) and edits that are not intended to be harmful (good edits/goodfaith damage).
This model helps to prioritize review of potentially damaging edits or vandalism. It provides a prediction on whether or not a given revision is damaging, and provides some probabilities to serve as a measure of its confidence level.
Users and uses
[edit]- This model should be used for prioritizing the review and potential reversion of vandalism on Italian Wikipedia.
- This model should be used for detecting damaging contributions by editors on Italian Wikipedia.
- This model should not be used as an ultimate arbiter of whether or not an edit ought to be considered damaging.
- The model should not be used outside of Italian Wikipedia.
- Italian Wikipedia uses the model as a service for facilitating efficient vandalism triage, edit reviews, or newcomer support.
- On an individual basis, anyone can submit a properly-formatted API call to ORES for a given revision and get back the result of this model.
https://ores.wikimedia.org/v3/scores/itwiki/133366421/damaging
Ethical considerations, caveats, and recommendations
[edit]Italian Wikipedia decided to use this model. Over time, the model has been validated through use in the community.
This model is known to give newer editors higher probability of damaging edits.
Internal or external changes that could make this model deprecated or no longer usable are:
- Data drift means training data for the model is no longer usable.
- Doesn't meet desired performance metrics in production.
- Italian Wikipedia community decides to not use this model anymore.
Model
[edit]Performance
[edit]Test data confusion matrix:
| Label | n | ~True | ~False |
|---|---|---|---|
| True | 712 | 404 | 308 |
| False | 17520 | 1116 | 16404 |
Test data sample rates:
| Rate | Sample | Population |
|---|---|---|
| sample | 0.039 | 0.961 |
| population | 0.039 | 0.961 |
Test data performance:
| Statistic | True | False |
|---|---|---|
| match_rate | 0.083 | 0.917 |
| filter_rate | 0.917 | 0.083 |
| recall | 0.567 | 0.936 |
| precision | 0.264 | 0.982 |
| f1 | 0.36 | 0.958 |
| accuracy | 0.922 | 0.922 |
| fpr | 0.064 | 0.433 |
| roc_auc | 0.921 | 0.92 |
| pr_auc | 0.373 | 0.997 |
The training dataset for this model is available here.
Implementation
[edit]{
"type": "GradientBoosting",
"params": {
"scale": true,
"center": true,
"labels": [
true,
false
],
"multilabel": false,
"population_rates": null,
"ccp_alpha": 0.0,
"criterion": "friedman_mse",
"init": null,
"learning_rate": 0.01,
"loss": "deviance",
"max_depth": 7,
"max_features": "log2",
"max_leaf_nodes": null,
"min_impurity_decrease": 0.0,
"min_impurity_split": null,
"min_samples_leaf": 1,
"min_samples_split": 2,
"min_weight_fraction_leaf": 0.0,
"n_estimators": 700,
"n_iter_no_change": null,
"presort": "deprecated",
"random_state": null,
"subsample": 1.0,
"tol": 0.0001,
"validation_fraction": 0.1,
"verbose": 0,
"warm_start": false
}
}
{
"title": "Scikit learn-based classifier score with probability",
"type": "object",
"properties": {
"prediction": {
"description": "The most likely label predicted by the estimator",
"type": "boolean"
},
"probability": {
"description": "A mapping of probabilities onto each of the potential output labels",
"type": "object",
"properties": {
"true": {
"type": "number"
},
"false": {
"type": "number"
}
}
}
}
}
https://ores.wikimedia.org/v3/scores/itwiki/133366421/damaging
Output:
{
"itwiki": {
"models": {
"damaging": {
"version": "0.5.0"
}
},
"scores": {
"133366421": {
"damaging": {
"score": {
"prediction": false,
"probability": {
"false": 0.9861661932024475,
"true": 0.013833806797552533
}
}
}
}
}
}
}
Data
[edit]Tabular data about edits is collected from the Mediawiki API, preprocessed (via log-transformations, joining with public editor data, etc.), and joined with user-generated goodfaith/damaging labels.
This model was trained using hand-labeled training data that is several years old. If available, the training dataset for this model can be accessed here.
The statistics reported here were calculated by selecting a random partition of the training data to hold out from the training process. The model then makes a prediction on that data, which is compared to the underlying ground truth.
Licenses
[edit]- Code: MIT license
- Model: MIT license
Citation
[edit]Cite this model card as:
@misc{
Triedman_Bazira_2023_Italian_Wikipedia_damaging,
title={ Italian Wikipedia damaging model card },
author={ Triedman, Harold and Bazira, Kevin },
year={ 2023 },
url={ https://meta.wikimedia.org/wiki/Machine_learning_models/Production/Italian_Wikipedia_damaging_edit }
}