diff options
author | TianxingHe <htx_2006@hotmail.com> | 2015-12-09 21:33:40 +0800 |
---|---|---|
committer | TianxingHe <htx_2006@hotmail.com> | 2015-12-09 21:33:40 +0800 |
commit | 7449dd19c4d1669b483693f61add9d574e46f0b2 (patch) | |
tree | 5dbbdf23c48a14c930a7d4b01baed57e96bcd243 /nerv/lib | |
parent | af684cb95478fc38cc3d9f284b6b518a431c87e2 (diff) | |
parent | ebb8ba41886f5860f27157343bcb022eb672143c (diff) |
Merge pull request #16 from cloudygoose/txh18/rnnlm
Added an example of bi-lstm
Diffstat (limited to 'nerv/lib')
-rw-r--r-- | nerv/lib/io/chunk_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nerv/lib/io/chunk_file.c b/nerv/lib/io/chunk_file.c index 4e00b0b..71db820 100644 --- a/nerv/lib/io/chunk_file.c +++ b/nerv/lib/io/chunk_file.c @@ -112,7 +112,7 @@ static ChunkFile *open_read(const char *fn, Status *status) { for (i = 0;; offset += chunk_len, i++) { ChunkInfo *cip; - fprintf(stderr, "reading chunk %d from %d\n", i, (int)offset); + fprintf(stdout, "reading chunk %d from %d\n", i, (int)offset); /* skip to the begining of chunk i */ if (fseeko(fp, offset, SEEK_SET) != 0) { |