I am trying to use tf slim library for building model on top of inception-v3 model
The tf slim library uses a version 'import tensorflow.contrib.slim as slim'
wheras the inception model uses 'from inception.slim import slim'
both the versions have some common and some different set of files , like layers.py is not present in inception.slim etc
- What is the significance of having two versions of the library ?
- Is there a difference in application of both the libraries
- The inception.slim contains files with deprecated functions like tf.op_scope and tf.variable_op_scope ?