All Projects → doccano → doccano-transformer

doccano / doccano-transformer

Licence: MIT license
The official tool for transforming doccano format into common dataset formats.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to doccano-transformer

doccano-client
A simple client wrapper for doccano API.
Stars: ✭ 52 (-40.23%)
Mutual labels:  annotation, doccano
bac-genomics-scripts
Collection of scripts for bacterial genomics
Stars: ✭ 39 (-55.17%)
Mutual labels:  annotation
Errant
ERRor ANnotation Toolkit: Automatically extract and classify grammatical errors in parallel original and corrected sentences.
Stars: ✭ 208 (+139.08%)
Mutual labels:  annotation
annotorious-openseadragon
An OpenSeadragon plugin for annotating high-res zoomable images
Stars: ✭ 93 (+6.9%)
Mutual labels:  annotation
Prodigy Recipes
🍳 Recipes for the Prodigy, our fully scriptable annotation tool
Stars: ✭ 229 (+163.22%)
Mutual labels:  annotation
ensembldb
This is the ensembldb development repository.
Stars: ✭ 31 (-64.37%)
Mutual labels:  annotation
Dart Json Mapper
Serialize / Deserialize Dart Objects to / from JSON
Stars: ✭ 206 (+136.78%)
Mutual labels:  annotation
prodoc.nvim
a neovim comment and annotation plugin using coroutine
Stars: ✭ 47 (-45.98%)
Mutual labels:  annotation
annotate
Create 3D labelled bounding boxes in RViz
Stars: ✭ 104 (+19.54%)
Mutual labels:  annotation
time-series-annotator
Time series annotation library.
Stars: ✭ 52 (-40.23%)
Mutual labels:  annotation
etos-deepcut
Deep Extreme Cut http://www.vision.ee.ethz.ch/~cvlsegmentation/dextr . a tool to do automatically object segmentation from extreme points.
Stars: ✭ 24 (-72.41%)
Mutual labels:  annotation
Silencer
Scala compiler plugin for warning suppression
Stars: ✭ 239 (+174.71%)
Mutual labels:  annotation
MS-CleanR
No description or website provided.
Stars: ✭ 21 (-75.86%)
Mutual labels:  annotation
Idea Php Annotation Plugin
Add PHP annotation support for PhpStorm and IntelliJ
Stars: ✭ 216 (+148.28%)
Mutual labels:  annotation
ofxOpenCvDnnObjectDetection
OpenCV based DNN Object Detection Library for Openframeworks
Stars: ✭ 34 (-60.92%)
Mutual labels:  annotation
Pcat open source
PointCloud Annotation Tools, support to label object bound box, ground, lane and kerb
Stars: ✭ 209 (+140.23%)
Mutual labels:  annotation
Od Annotation
目标检测数据集标注工具
Stars: ✭ 253 (+190.8%)
Mutual labels:  annotation
inception-external-recommender
Get annotation suggestions for the INCEpTION text annotation platform from spaCy, Sentence BERT, scikit-learn and more. Runs as a web-service compatible with the external recommender API of INCEpTION.
Stars: ✭ 36 (-58.62%)
Mutual labels:  annotation
BACTpipe
BACTpipe: An assembly and annotation pipeline for bacterial genomics
Stars: ✭ 19 (-78.16%)
Mutual labels:  annotation
concrete-python
Python modules and scripts for working with Concrete, a data serialization format for NLP
Stars: ✭ 19 (-78.16%)
Mutual labels:  annotation

doccano-transformer

Codacy Badge Build Status

Doccano Transformer helps you to transform an exported dataset into the format of your favorite machine learning library.

Supported formats

Doccano Transformer supports the following formats:

  • CoNLL 2003
  • spaCy

Install

To install doccano-transformer, simply use pip:

pip install doccano-transformer

Examples

Named Entity Recognition

The following formats are supported:

  • CoNLL 2003
  • spaCy
from doccano_transformer.datasets import NERDataset
from doccano_transformer.utils import read_jsonl

dataset = read_jsonl(filepath='example.jsonl', dataset=NERDataset, encoding='utf-8')
dataset.to_conll2003(tokenizer=str.split)
dataset.to_spacy(tokenizer=str.split)

Contribution

We encourage you to contribute to doccano transformer! Please check out the Contributing to doccano transformer guide for guidelines about how to proceed.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].