https://www.youtube.com/watch?v=lEljKc9ZtU8&list=PLOU2XLYxmsILVTiOlMJdo7RQS55jYhsMi&index=82&t=0s
"For Beginners":
"For Experts":
Training both types of models:
Distributed Training "greatly simplified in TF2"
import tensorflow as tf
a = tf.constant([[1,2],[3,4]])
b = tf.matmul(a,a)
print(b)
print(type(b))
print(type(b.numpy()))