in supervised_reptile/reptile.py [0:0]
def __init__(self, session, variables=None, transductive=False, pre_step_op=None):
self.session = session
self._model_state = VariableState(self.session, variables or tf.trainable_variables())
self._full_state = VariableState(self.session,
tf.get_collection(tf.GraphKeys.GLOBAL_VARIABLES))
self._transductive = transductive
self._pre_step_op = pre_step_op