Surely someone has spend the time crafting the right model for your job...
Transfer Learning is leveraging a working model's existing architecture and learned patterns for our own problem.
Callbacks are a tool which can add helpful functionality to your models during the training, evaluation or inference.
Some Popular Callbacks include:
TensorBoard
ModelCheckpoint
EarlyStopping
Why do we want to track our experiments?
Earlier, to compare the results of one model's with other models we were scrolling up and down looking at the metrics, Oh boy that was tedious when you have 20 models or so.
Creating a TensorBoard Callback
tf.keras.callback.TensorBoard()
—> to create a tensorboard callback