MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / trainable_variables

Method trainable_variables

tensorflow/python/ops/template.py:427–433  ·  view source on GitHub ↗

Returns the list of trainable variables created by the Template.

(self)

Source from the content-addressed store, hash-verified

425
426 @property
427 def trainable_variables(self):
428 """Returns the list of trainable variables created by the Template."""
429 if self._variables_created:
430 return ops.get_collection(ops.GraphKeys.TRAINABLE_VARIABLES,
431 self.variable_scope_name)
432 else:
433 return []
434
435 @property
436 def non_trainable_variables(self):

Callers 13

_rnn_get_variableMethod · 0.45
build_graphFunction · 0.45
trainable_variablesMethod · 0.45
_call_funcMethod · 0.45
trainable_variablesMethod · 0.45
create_lstm_hessianFunction · 0.45
model_fnFunction · 0.45
create_fc_per_eg_gradFunction · 0.45
create_lstm_per_eg_gradFunction · 0.45
loop_fnFunction · 0.45
create_mnist_per_eg_gradFunction · 0.45

Calls 1

get_collectionMethod · 0.45

Tested by 8

create_lstm_hessianFunction · 0.36
model_fnFunction · 0.36
create_fc_per_eg_gradFunction · 0.36
create_lstm_per_eg_gradFunction · 0.36
loop_fnFunction · 0.36
create_mnist_per_eg_gradFunction · 0.36