1

I am going over tensorflow tutrial for RNN of drawings: https://www.tensorflow.org/versions/master/tutorials/recurrent_quickdraw

But I stuck to executing the command:

train_model.py \
    --training_data=rnn_tutorial_data/training.tfrecord-00000-of-00010 \
    --eval_data=rnn_tutorial_data/eval.tfrecord-00000-of-00010 \
    --classes_file=rnn_tutorial_data/training.tfrecord.classes

Tensorflow throws:

model_dir should be non-empty

and It still happens after I add:

--model_dir=modeldir
A.D.
  • 2,352
  • 2
  • 15
  • 25
user1623454
  • 274
  • 3
  • 14

2 Answers2

1

I had the same problem, so just make a new directory say 'model_dir' and mention this by flag

--model_dir=model_dir
1

this is referring to --output-dir, had this issue when the --output-dir was not local, but /home/me/etc/etc

JtotheR
  • 503
  • 5
  • 5