tf.contrib.checkpoint.Mapping

View source on GitHub

An append-only trackable mapping data structure with string keys.

Maintains checkpoint dependencies on its contents (which must also be trackable), named based on its keys.

Note that once a key has been added, it may not be deleted or replaced. If names may not be unique, see tf.contrib.checkpoint.UniqueNameTracker.

layers

losses Aggregate losses from any Layer instances.
non_trainable_variables

non_trainable_weights

trainable

trainable_variables

trainable_weights

updates Aggregate updates from any Layer instances.
variables

weights

Methods

get

D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.

items

D.items() -> a set-like object providing a view on D's items

keys

D.keys() -> a set-like object providing a view on D's keys

update

View source

values

D.values() -> an object providing a view on D's values

__contains__

__eq__

View source

Return self==value.

__getitem__

View source

__iter__

View source

__len__

View source