(self)
| 242 | instructions='Stop using this property because tf.layers layers no ' |
| 243 | 'longer track their graph.') |
| 244 | def graph(self): |
| 245 | if context.executing_eagerly(): |
| 246 | raise RuntimeError('Layer.graph not supported when executing eagerly.') |
| 247 | return None |
| 248 | |
| 249 | def _init_set_name(self, name): |
| 250 | # Determine layer name (non-unique). |
no test coverage detected