From 5262875b8668aedb5089bd4f332b636a5c808cef Mon Sep 17 00:00:00 2001 From: Symisc Systems Date: Tue, 5 Jun 2018 08:24:08 +0200 Subject: [PATCH] RNN text generation via pre-trained model --- samples/rnn_text_gen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/rnn_text_gen.c b/samples/rnn_text_gen.c index ad69389..21f5a02 100644 --- a/samples/rnn_text_gen.c +++ b/samples/rnn_text_gen.c @@ -6,7 +6,7 @@ * Compile this file together with the SOD embedded source code to generate * the executable. For example: * -* gcc sod.c rnn_text_gen.c -lm -Ofast -march=native -Wall -std=c99 -o sod_cnn_intro +* gcc sod.c rnn_text_gen.c -lm -Ofast -march=native -Wall -std=c99 -o sod_rnn * * Under Microsoft Visual Studio (>= 2015), just drop `sod.c` and its accompanying * header files on your source tree and you're done. If you have any trouble @@ -89,4 +89,4 @@ int main(int argc, char *argv[]) /* Clean-up */ sod_cnn_destroy(pNet); return 0; -} \ No newline at end of file +}