From 72add6c98f2c0607f088fa0c78d40f11e2efa4c4 Mon Sep 17 00:00:00 2001 From: Sam Shleifer Date: Sun, 16 Aug 2020 20:31:22 -0400 Subject: [PATCH] [s2s] docs, document desired filenames nicely (#6525) --- examples/seq2seq/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/examples/seq2seq/README.md b/examples/seq2seq/README.md index 3a37cc5e5d..9c94b0c2c8 100644 --- a/examples/seq2seq/README.md +++ b/examples/seq2seq/README.md @@ -35,7 +35,15 @@ export ENRO_DIR=${PWD}/wmt_en_ro this should make a directory called `wmt_en_ro/` with files like `test.source`. ``` -If you are using your own data, it must be formatted as one directory with 6 files: train.source, train.target, val.source, val.target, test.source, test.target. +If you are using your own data, it must be formatted as one directory with 6 files: +``` +train.source +train.target +val.source +val.target +test.source +test.target +``` The `.source` files are the input, the `.target` files are the desired output.