tf-keras-tutorial
tf-keras-tutorial copied to clipboard
tf.keras + tf.data with Eager Execution
At code block 26 ``` BATCH_SIZE = 1 EPOCHS = 2 time_hist = TimeHistory() estimator.train(input_fn=lambda:input_fn(train_folder, labels, shuffle=True, batch_size=BATCH_SIZE, buffer_size=2048, num_epochs=EPOCHS, prefetch_buffer_size=4), hooks=[time_hist]) ``` I get the following error: ``` WARNING:tensorflow:From...
can i train the kaggle data in your code with the configuration:three 12G taitan xp gpu ,one 24G memory bar,python2.7,tensorflow1.9
Hi, your tutorial is very helpful to me!!! Thank you very much. I read your code many times, and I found it is not include __How to Save Model__, as...