Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: bit typo README dataset #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dataset/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## XPersona Dataset
XPersona dataset is an extension of the persona-chat [dataset](https://www.aclweb.org/anthology/P18-1205/). Specifically, we extend the [ConvAI2](http://convai.io) to other six languages: Chinese, French, Indonesian, Italian, Korean, and Japanese. Since the test set of ConvAI2 is hidden, we split the original validation set into a new validation set and test sets.
XPersona dataset is an extension of the persona-chat [dataset](https://www.aclweb.org/anthology/P18-1205/). Specifically, we extend the [ConvAI2](http://convai.io) to other six languages: Chinese, French, Indonesian, Italian, Korean, and Japanese. Since the test set of ConvAI2 is hidden, we split the original validation set into a new validation set and test sets.

## Dataset Format
The data is a list of dialogues formated as following:
The data is a list of dialogues formatted as following:
```bash
data = [dialogue1, dialogue2, dialogue3...]
```
```bash
dialogue = {"persona":[sentence1, sentence2...], "dialogue": [[user_utterence1, response1], [user_utterence2, response2]...]}
```
```