File size: 1,817 Bytes
3281e02
1b0f91f
 
3281e02
 
 
 
 
1b0f91f
3281e02
 
 
 
 
 
 
 
1b0f91f
 
 
 
 
 
 
 
 
 
 
3281e02
 
 
 
 
1b0f91f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3281e02
1b0f91f
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
title: "TLUnified-NER Corpus"
description: |

  This dataset contains the annotated TLUnified corpora from Cruz and Cheng
  (2021).  It consists of a curated sample of around 7,000 documents for the
  named entity recognition (NER) task.  The majority of the corpus are news
  reports in Tagalog, resembling the domain of the original ConLL 2003.  There
  are three entity types: Person (PER), Organization (ORG), and Location (LOC).

  ### About this repository

  This repository is a [spaCy project](https://spacy.io/usage/projects) for
  converting the annotated spaCy files into IOB. The process goes like this: we
  download the raw corpus from Google Cloud Storage (GCS), convert the spaCy
  files into a readable IOB format, and parse that using our loading script
  (i.e., `tlunified-ner.py`). We're also shipping the IOB file so that it's
  easier to access.

directories: ["assets", "corpus/spacy", "corpus/iob"]

vars:
  version: 1.0

assets:
  - dest: assets/corpus.tar.gz
    description: "Annotated TLUnified corpora in spaCy format with train, dev, and test splits."
    url: "https://storage.googleapis.com/ljvmiranda/calamanCy/tl_tlunified_gold/v${vars.version}/corpus.tar.gz"

workflows:
  all:
    - "setup-data"
    - "upload-to-hf"

commands:
  - name: "setup-data"
    help: "Prepare the Tagalog corpora used for training various spaCy components"
    script:
      - mkdir -p corpus/spacy
      - tar -xzvf assets/corpus.tar.gz -C corpus/spacy
      - python -m spacy_to_iob corpus/spacy/ corpus/iob/
    outputs:
      - corpus/iob/train.iob
      - corpus/iob/dev.iob
      - corpus/iob/test.iob

  - name: "upload-to-hf"
    help: "Upload dataset to HuggingFace Hub"
    script:
      - git push
    deps:
      - corpus/iob/train.iob
      - corpus/iob/dev.iob
      - corpus/iob/test.iob