AI

import tensorflow as tf image = tf.constant([[2,3,4],[5,6,7]]) i = tf.expand_dims(image, axis=0) i i = tf.expand_dims(image, axis=1) i i = tf.expand_dims(image, axis=2) i