Hi I just installed Tensorflow on my Mac and I want to use tf.contrib.slim but when I use it I get this
Tensorflow
tf.contrib.slim
import tensorflow as tf s
Starting from tensorflow 13.1 there's no contrib. You can use without it slim = tf.slim or you can install pip install tensorflow==1.13 and use it
slim = tf.slim
pip install tensorflow==1.13