crazydonkey200 / tensorflow-char-rnn

Char-RNN implemented using TensorFlow.
MIT License
425 stars 267 forks source link

--train_frac / --valid_frac #18

Closed lowtronik closed 6 years ago

lowtronik commented 6 years ago

I've noticed that your default settings are train_frac= 0.9 and valid_frac=0.05 , is that on purpose?

crazydonkey200 commented 6 years ago

Hi, that is just one common setup that uses first 90% as training set, next 5% as validation set and the last 5% as test set. You could change it to suit your needs.

lowtronik commented 6 years ago

oh, ok I was just wondering were the rest 0.05% was going

thanks