christopher's picture
Update README.md
772f8dd verified
metadata
license: cc0-1.0
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
dataset_info:
  features:
    - name: timestamp
      dtype: timestamp[s, tz=UTC]
    - name: page_id
      dtype: int64
    - name: page_title
      dtype: string
    - name: page_namespace
      dtype: uint8
    - name: rev_id
      dtype: int64
    - name: user_id
      dtype: bool
    - name: rating_key
      dtype: int64
    - name: rating_value
      dtype: uint8
  splits:
    - name: train
      num_bytes: 2617283625
      num_examples: 47207444
  download_size: 664623140
  dataset_size: 2617283625
pretty_name: Wikipedia Article Ratings, Version 4
tags:
  - wikipedia
  - assessment
  - quality
  - ratings
size_categories:
  - 10M<n<100M
language:
  - en

Dataset Card for Wikipedia article ratings (V4)

1-year dump of English Wikipedia article ratings. The dataset includes 47,207,448 records corresponding to 11,801,862 unique ratings posted between July 22, 2011 and July 22, 2012.

The Wikimedia Foundation has been experimenting with a feature to capture reader quality assessments of articles since September 2010. Article Feedback v4 (AFTv4) is a tool allowing readers to rate the quality of an article along 4 different dimensions. The tool has been deployed on the entire English Wikipedia (except for a small number of articles) since July 22, 2011. A new version of the tool, focused on feedback instead of ratings (AFTv5), has been tested in 2012 and deployed to a 10% random sample of articles from the English Wikipedia in July 2012.

Since launching the tool in September 2010, we've continually analyzed the results; see the Research reports, including specific analyses of the call to action and rater expertise.

As of AFTv5, all research reports are hosted on Meta.

This 1-year dump of anonymized rating data was originally made available for download from the DataHub. Real-time rating data can also be accessed via the toolserver.

One row of the dataset looks like this:

{
  'timestamp': datetime.datetime(2011, 7, 22, 16, 36, tzinfo=<UTC>),
  'page_id': 4798493,
  'page_title': 'Wrap_rage',
  'page_namespace': 0,
  'rev_id': 440390013,
  'user_id': False,
  'rating_key': 3,
  'rating_value': 4
}

The following fields are included:

  1. timestamp: 14-digit timestamp (UTC)
  2. page_id: article ID
  3. page_title: full article title
  4. page_namespace: article namespace (0 is for Wikipedia's main article namespace)
  5. rev_id: revision ID (article version that was rated)
  6. user_id: boolean field set to 0 for anonymous raters and to 1 for registered users
  7. rating_key: numeric key of the rating dimension (1: trustworthy, 2: objective, 3: complete, 4: well-written)
  8. rating_value: rating value on a 1-5 scale. A value set to 0 indicates that the rater didn't rate the article on the corresponding dimension.

Dataset Description