Coder Social home page Coder Social logo

github-typo-corpus's Introduction

GitHub Typo Corpus

A Large-Scale Multilingual Dataset of Misspellings and Grammatical Errors

Masato Hagiwara and Masato Mita

Introduction

Overview of GitHub Typo Corpus

Are you the kind of person who makes a lot of typos when writing code? Or are you the one who fixes them by making "fix typo" commits? Either way, thank you—you contributed to the state-of-the-art in the NLP field.

GitHub Typo Corpus is a large-scale dataset of misspellings and grammatical errors along with their corrections harvested from GitHub. It contains more than 350k edits and 65M characters in more than 15 languages, making it the largest dataset of misspellings to date.

See the paper for more information.

Dataset

Download the GitHub Typo Corpus (ver. 1.0.0)

The dataset is formatted in JSONL, one commit object per line. Here's sample of a commit object in the dataset:

{
  "repo": "https://github.com/user/repository",
  "commit": "08d8049...",
  "message": "Edit document.txt; fix a typo",
  "edits": [
    {
      "src": {
        "text": "check this dokument. On",
        "path": "document.txt",
        "lang": "eng",
        "ppl": 14.75...
      },
      "tgt": {
        "text": "check this document. On",
        "path": "document.txt",
        "lang": "eng",
        "ppl": 13.03...
      },
      "prob_typo": 0.9,
      "is_typo": true
    }
  ]
}

The commit object contains the following keys:

  • repo: URL of the repository
  • commit: hash of the commit
  • message: commit message
  • edits: list of edits extracted from this commit. An edit object contains the following keys:
    • src: text info before the edit
    • tgt: text info after the edit
    • prob_typo: probability that this edit is a typo edit (versus a type of edit that changes the meaning before and after the edit)
    • is_typo: true/false indicating if this edit is a typo edit (i.e., if prob_typo > 0.5)
    • src and tgt contain the following keys:
      • text: text of edit
      • path: path of the file the edit is made
      • lang: language of the text (automatically detected by NanigoNet)
      • ppl: perplexity of the text measured by a language model
    • Note: The prob_typo, is_typo, and ppl keys are only available for English (eng), Simplified Chinese (cmn-hans), and Japanese (jpn), the three largest languages in the dataset.

We recommend using tools like jq when browsing the file.

Source

See src/ for the source code for collecting repositories, commits, and edits. You need Python3 + GitPython to run the code.

Terms

The copyright and license terms of the individual commits and texts contained in the dataset follow the terms of the repositories they belong to. We collect and publish the GitHub Typo Corpus under GitHub's Acceptable Use Policies—5. Scraping and API Usage Restrictions. Let us know if you find any copyright issues regarding the dataset.

github-typo-corpus's People

Contributors

mhagiwara avatar

Watchers

James Cloos avatar paper2code - bot 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.