Shadz

Results 3 issues of Shadz

I'm currently trying find the following in the library scripts: 1) Training log loss or loss per epoch 2) Training accuracy per epoch Below is a snapshot of the training...

Can you kindly elaborate on the data structure required for the training set and test set using a basic example (i.e. how the data should be setup)? In addition, kindly...

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...