jmnybl commited on
Commit
fb87994
1 Parent(s): 73f1fcc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -2
README.md CHANGED
@@ -56,11 +56,18 @@ task_ids:
56
  - **Repository:** https://github.com/TurkuNLP/Turku-paraphrase-corpus
57
  - **Paper:** https://aclanthology.org/2021.nodalida-main.29
58
  - **Leaderboard:**
59
- - **Point of Contact:** jmnybl@utu.fi, filip.ginter@gmail.com
60
 
61
  ### Dataset Summary
62
 
63
- The project gathered a large dataset of Finnish paraphrase pairs (over 100,000). The paraphrases are selected and classified manually, so as to minimize lexical overlap, and provide examples that are maximally structurally and lexically different. The objective is to create a dataset which is challenging and better tests the capabilities of natural language understanding. An important feature of the data is that most paraphrase pairs are distributed in their document context. The primary application for the dataset is the development and evaluation of deep language models, and representation learning in general.
 
 
 
 
 
 
 
64
 
65
  ### Supported Tasks and Leaderboards
66
 
56
  - **Repository:** https://github.com/TurkuNLP/Turku-paraphrase-corpus
57
  - **Paper:** https://aclanthology.org/2021.nodalida-main.29
58
  - **Leaderboard:**
59
+ - **Point of Contact:** jmnybl@utu.fi; filip.ginter@gmail.com
60
 
61
  ### Dataset Summary
62
 
63
+ The project gathered a large dataset of Finnish paraphrase pairs (over 100,000). The paraphrases are selected and classified manually, so as to minimize lexical overlap, and provide examples that are maximally structurally and lexically different. The objective is to create a dataset which is challenging and better tests the capabilities of natural language understanding. An important feature of the data is that most paraphrase pairs are distributed in their document context. The primary application for the dataset is the development and evaluation of deep language models, and representation learning in general.
64
+
65
+ Usage:
66
+ ```
67
+ from datasets import load_dataset
68
+ dataset = load_dataset('TurkuNLP/turku_paraphrase_corpus', name="plain")
69
+ ```
70
+ where `name` is one of the supported loading options: `plain`, `plain-context`, `classification`, `classification-context`, or `generation`. See Data Fields for more information.
71
 
72
  ### Supported Tasks and Leaderboards
73