From c314ddab12f6a41d1bddca1a40cb46db78b7ef1d Mon Sep 17 00:00:00 2001 From: Nathan Murthy <1788878+natemurthy@users.noreply.github.com> Date: Tue, 26 Feb 2019 18:49:04 -0800 Subject: [PATCH] Minor: update readme Example will `tee` stdout to `/tmp/samples` from conditional and unconditional generation scripts. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c40ae1c..6d05858 100644 --- a/README.md +++ b/README.md @@ -68,11 +68,11 @@ to override the standard stream settings in UTF-8 mode. To generate unconditional samples from the small model: ``` -python3 src/generate_unconditional_samples.py | tee samples +python3 src/generate_unconditional_samples.py | tee /tmp/samples ``` There are various flags for controlling the samples: ``` -python3 src/generate_unconditional_samples.py --top_k 40 --temperature 0.7 | tee samples +python3 src/generate_unconditional_samples.py --top_k 40 --temperature 0.7 | tee /tmp/samples ``` ### Conditional sample generation