patriziobellan commited on
Commit
5eb9bca
1 Parent(s): 113c335

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -7
README.md CHANGED
@@ -176,13 +176,13 @@ That means:
176
 
177
  ### Data Splits
178
 
179
- The data was not splited. It contains the test set only.
180
 
181
  ## Dataset Creation
182
 
183
  ### Curation Rationale
184
 
185
- Although there is a long tradition of work in NLP on extracting entities and relations from text, to date there exists little work on the acquisition of business processes from unstructured data such as textual corpora of process descriptions. With this work we aim at filling this gap and establishing the first steps towards bridging data-driven information extraction methodologies from Natural Language Processing and the model-based formalization that is aimed from Business Process Management.
186
 
187
  ### Source Data
188
 
@@ -329,28 +329,31 @@ The Annotation guidelines and procedures adopted to annotate the PET dataset can
329
 
330
  ### Article
331
 
332
- The Article can be downloeaded [here]({https://ceur-ws.org/Vol-3287/paper18.pdf})
333
 
334
  ### Python Interface
335
 
336
- A python interface (beta version) to interact with the dataset can be found [here](https://pypi.org/project/petdatasetreader/)
337
 
338
- You can find the annotation data, baselines, and a graphical interface to visualize predictions [here](https://github.com/patriziobellan86/PETbaselines)
339
 
340
 
341
  ### Benchmarks
342
 
343
- A python benchmarking procedure package to test approaches on the PET dataset ca be found [here](https://pypi.org/project/petbenchmarks/)
344
 
345
 
346
  ## <a name="loadingdata"></a>Loading data
347
  ### Token-classification task
 
348
  ```python
349
  from datasets import load_dataset
350
  modelhub_dataset = load_dataset("patriziobellan/PET", name='token-classification')
351
  ```
352
 
353
  ### Relations-extraction task
 
354
  ```python
355
  from datasets import load_dataset
356
- modelhub_dataset = load_dataset("patriziobellan/PET", name='relations-extraction')
 
 
176
 
177
  ### Data Splits
178
 
179
+ The data was not split. It contains the test set only.
180
 
181
  ## Dataset Creation
182
 
183
  ### Curation Rationale
184
 
185
+ Although there is a long tradition of work in NLP on extracting entities and relations from text to date there exists little work on the acquisition of business processes from unstructured data such as textual corpora of process descriptions. With this work we aim at filling this gap and establishing the first steps towards bridging data-driven information extraction methodologies from Natural Language Processing and the model-based formalization that is aimed from Business Process Management.
186
 
187
  ### Source Data
188
 
 
329
 
330
  ### Article
331
 
332
+ The article can be downloaded [here]({https://ceur-ws.org/Vol-3287/paper18.pdf})
333
 
334
  ### Python Interface
335
 
336
+ A Python interface (beta version) to interact with the dataset can be found [here](https://pypi.org/project/petdatasetreader/)
337
 
338
+ You can find the **BASELINES**, the annotation data, and a graphical interface to visualize predictions [here](https://github.com/patriziobellan86/PETbaselines)
339
 
340
 
341
  ### Benchmarks
342
 
343
+ A Python benchmarking procedure package to test approaches on the PET dataset ca be found [here](https://pypi.org/project/petbenchmarks/)
344
 
345
 
346
  ## <a name="loadingdata"></a>Loading data
347
  ### Token-classification task
348
+
349
  ```python
350
  from datasets import load_dataset
351
  modelhub_dataset = load_dataset("patriziobellan/PET", name='token-classification')
352
  ```
353
 
354
  ### Relations-extraction task
355
+
356
  ```python
357
  from datasets import load_dataset
358
+ modelhub_dataset = load_dataset("patriziobellan/PET", name='relations-extraction')
359
+ ```