GoogleCloudPlatform / training-data-analyst

Labs and demos for courses for GCP Training (http://cloud.google.com/training).
Apache License 2.0
7.93k stars 5.89k forks source link

training-data-analyst/self-paced-labs/vertex-ai/vertex-ai-qwikstart\lab_exercise.ipynb #2698

Open dsgogogo opened 2 weeks ago

dsgogogo commented 2 weeks ago

Ln 27 - STEPS_PER_EPOCH = (TOTAL_TRAIN_EXAMPLES // (BATCH_SIZE*N_CHECKPOINTS))

I think the steps should be as below. We don't need checkpoints in the formula.

STEPS_PER_EPOCH = (TOTAL_TRAIN_EXAMPLES // (BATCH_SIZE)