You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

195 lines
7.4 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. # doccano
  2. doccano is an open source text annotation tool for human. It provides annotation features for text classification, sequence labeling and sequence to sequence. So, you can create labeled data for sentiment analysis, named entity recognition, text summarization and so on. Just create project, upload data and start annotation. You can build dataset in hours.
  3. ## Demo
  4. You can enjoy [annotation demo](http://doccano.herokuapp.com).
  5. ### [Named entity recognition](https://doccano.herokuapp.com/demo/named-entity-recognition/)
  6. First demo is one of the sequence labeling tasks, named-entity recognition. You just select text spans and annotate it. Since doccano supports shortcut key, so you can quickly annotate text spans.
  7. ![Named Entity Recognition](./docs/named_entity_annotation.gif)
  8. ### [Sentiment analysis](https://doccano.herokuapp.com/demo/text-classification/)
  9. Second demo is one of the text classification tasks, topic classification. Since there may be more than one category, you can annotate multi-labels.
  10. ![Text Classification](./docs/text_classification.gif)
  11. ### [Machine translation](https://doccano.herokuapp.com/demo/translation/)
  12. Final demo is one of the sequence to sequence tasks, machine translation. Since there may be more than one responses in sequence to sequence tasks, you can create multi responses.
  13. ![Machine Translation](./docs/translation.gif)
  14. ## Features
  15. * Collaborative annotation
  16. * Language independent
  17. * (future) Auto labeling
  18. ## Requirements
  19. * Python 3.6+
  20. * django 2.0.5+
  21. * Google Chrome(highly recommended)
  22. ## Installation
  23. To install doccano, simply run:
  24. ```bash
  25. $ git clone https://github.com/chakki-works/doccano.git
  26. $ cd doccano
  27. $ pip install -r requirements.txt
  28. $ cd app
  29. ```
  30. First we need to make migration. Run the following command:
  31. ```bash
  32. $ python manage.py migrate
  33. ```
  34. Next we need to create a user who can login to the admin site. Run the following command:
  35. ```bash
  36. $ python manage.py createsuperuser
  37. ```
  38. Enter your desired username and press enter.
  39. ```bash
  40. Username: admin
  41. ```
  42. You will then be prompted for your desired email address:
  43. ```bash
  44. Email address: admin@example.com
  45. ```
  46. The final step is to enter your password. You will be asked to enter your password twice, the second time as a confirmation of the first.
  47. ```bash
  48. Password: **********
  49. Password (again): *********
  50. Superuser created successfully.
  51. ```
  52. ## Usage
  53. ### Start the development server
  54. Let’s start the development server and explore it.
  55. If the server is not running start it like so:
  56. ```bash
  57. $ python manage.py runserver
  58. ```
  59. Now, open a Web browser and go to <http://127.0.0.1:8080/login/>. You should see the login screen:
  60. <img src="./docs/login_form.png" alt="Login Form" width=400>
  61. ### Create a project
  62. Now, try logging in with the superuser account you created in the previous step. You should see the doccano project list page:
  63. <img src="./docs/projects.png" alt="projects" width=600>
  64. There is no project created yet. To create your project, make sure you’re in the project list page and select `Create Project` button. You should see the following screen:
  65. <img src="./docs/create_project.png" alt="Project Creation" width=400>
  66. In this step, you can select three project types: text classificatioin, sequence labeling and sequence to sequence. You should select a type with your purpose.
  67. ### Import Data
  68. After creating a project, you will see the "Import Data" page, or click `Import Data` button in the navigation bar. You should see the following screen:
  69. <img src="./docs/upload.png" alt="Upload project" width=600>
  70. You can upload two types of files:
  71. - `CSV file`: file must contain a header with a `text` column or be one-column csv file.
  72. - `JSON file`: each line contains a JSON object with a `text` key. JSON format supports line breaks rendering.
  73. > Notice: Doccano won't render line breaks in annotation page for sequence labeling task due to the indent problem, but the exported JSON file still contains line breaks.
  74. `example.txt` (or `example.csv`)
  75. ```python
  76. EU rejects German call to boycott British lamb.
  77. President Obama is speaking at the White House.
  78. He lives in Newark, Ohio.
  79. ...
  80. ```
  81. `example.json`
  82. ```JSON
  83. {"text": "EU rejects German call to boycott British lamb."}
  84. {"text": "President Obama is speaking at the White House."}
  85. {"text": "He lives in Newark, Ohio."}
  86. ...
  87. ```
  88. Any other columns (for csv) or keys (for json) are preserved and will be exported in the `metadata` column or key as is.
  89. Once you select a TXT/JSON file on your computer, click `Upload dataset` button. After uploading the dataset file, we will see the `Dataset` page (or click `Dataset` button list in the left bar). This page displays all the documents we uploaded in one project.
  90. ### Define labels
  91. Click `Labels` button in left bar to define your own labels. You should see the label editor page. In label editor page, you can create labels by specifying label text, shortcut key, background color and text color.
  92. <img src="./docs/label_editor.png" alt="Edit label" width=600>
  93. ### Annotation
  94. Now, you are ready to annotate the texts. Just click the `Annotate Data` button in the navigation bar, you can start to annotate the documents you uploaded.
  95. <img src="./docs/annotation.png" alt="Edit label" width=600>
  96. ### Export Data
  97. After the annotation step, you can download the annotated data. Click the `Edit data` button in navigation bar, and then click `Export Data`. You should see below screen:
  98. <img src="./docs/export_data.png" alt="Edit label" width=600>
  99. You can export data as CSV file or JSON file by clicking the button. As for the export file format, you can check it here: [Export File Formats](https://github.com/chakki-works/doccano/wiki/Export-File-Formats).
  100. Each exported document will have metadata column or key, which will contain
  101. additional columns or keys from the imported document. The primary use-case for metadata is to allow you to match exported data with other system
  102. by adding `external_id` to the imported file. For example:
  103. Input file may look like this:
  104. `import.json`
  105. ```JSON
  106. {"text": "EU rejects German call to boycott British lamb.", "external_id": 1}
  107. ```
  108. and the exported file will look like this:
  109. `output.json`
  110. ```JSON
  111. {"doc_id": 2023, "text": "EU rejects German call to boycott British lamb.", "labels": ["news"], "username": "root", "metadata": {"external_id": 1}}
  112. ```
  113. ### Tutorial
  114. We prepared a NER annotation tutorial, which can help you have a better understanding of doccano. Please first read the README page, and then take the tutorial. [A Tutorial For Sequence Labeling Project](https://github.com/chakki-works/doccano/wiki/A-Tutorial-For-Sequence-Labeling-Project).
  115. I hope you are having a great day!
  116. ## Contribution
  117. As with any software, doccano is under continuous development. If you have requests for features, please file an issue describing your request. Also, if you want to see work towards a specific feature, feel free to contribute by working towards it. The standard procedure is to fork the repository, add a feature, fix a bug, then file a pull request that your changes are to be merged into the main repository and included in the next release.
  118. Here are some tips might be helpful. [How to Contribute to Doccano Project](https://github.com/chakki-works/doccano/wiki/How-to-Contribute-to-Doccano-Project)
  119. ## Contact
  120. For help and feedback, please feel free to contact [the author](https://github.com/Hironsan).
  121. **If you are favorite to doccano, please follow my [GitHub](https://github.com/Hironsan) and [Twitter](https://twitter.com/Hironsan13) account.**