Giter Site home page Giter Site logo

arlolra / revscoring Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wikimedia/revscoring

0.0 2.0 0.0 1.12 MB

A generic, machine learning-based revision scoring system for MediaWiki

Home Page: http://pythonhosted.org/revscoring

License: MIT License

Python 98.12% Jupyter Notebook 1.88%

revscoring's Introduction

travis codecov

Revision Scoring

A generic, machine learning-based revision scoring system designed to be used to automatically differentiate damage from productive contributory behavior on Wikipedia.

Example

Using a scorer_model to score a revision:

>>> import mwapi
>>> from revscoring import ScorerModel
>>> from revscoring.extractors import APIExtractor
>>>
>>> with open("models/enwiki.damaging.linear_svc.model") as f:
...     scorer_model = ScorerModel.load(f)
...
>>> extractor = APIExtractor(mwapi.Session(host="https://en.wikipedia.org",
...                                        user_agent="revscoring demo"))
>>>
>>> feature_values = extractor.extract(123456789, scorer_model.features)
>>>
>>> print(scorer_model.score(feature_values))
{'prediction': True, 'probability': {False: 0.4694409344514984, True: 0.5305590655485017}}

Installation

The easiest way to install revscoring is via the Python package installer (pip).

pip install revscoring

You may find that some of revscorings dependencies fail to compile (namely scipy, numpy and sklearn). In that case, you'll need to install some dependencies in your operating system.

Ubuntu & Debian:
Run sudo apt-get install python3-dev g++ gfortran liblapack-dev libopenblas-dev
Windows:
'TODO'
MacOS:
'TODO'

Finally, in order to make use of language features, you'll need to download some NLTK data. The following command will get the necessary corpus.

python -m nltk.downloader stopwords

You'll also need to install enchant compatible dictionaries of the languages you'd like to use. We recommend the following:

  • languages.arabic: aspell-ar
  • languages.dutch: myspell-nl
  • languages.english: myspell-en-us myspell-en-gb myspell-en-au
  • languages.estonian: myspell-et
  • languages.french: myspell-fr
  • languages.german: myspell-de-at myspell-de-ch myspell-de-de
  • languages.indonesian: aspell-id
  • languages.italian: myspell-it
  • languages.hebrew: myspell-he
  • languages.persian: myspell-fa
  • languages.polish: aspell-pl
  • languages.portuguese: myspell-pt
  • languages.spanish: myspell-es
  • languages.ukrainian: myspell-uk
  • languages.vietnamese: hunspell-vi

Authors

Aaron Halfaker:
Helder:
Adam Roses Wight:
Amir Sarabadani:

revscoring's People

Contributors

1ec5 avatar adamwight avatar eranroz avatar halfak avatar he7d3r avatar ironholds avatar jonasagx avatar kenrick95 avatar ladsgroup avatar marcelrf avatar nealmcb avatar seanchen avatar toarushiroineko avatar yuvipanda avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.