Adds an image summary for each of the given tensors. Args: tensors: A list of variable or op tensors. prefix: An optional prefix for the summary names. Returns: A list of scalar `Tensors` of type `string` whose contents are the serialized `Summary` protocol buffer.
(tensors, prefix=None)
| 167 | |
| 168 | |
| 169 | def add_image_summaries(tensors, prefix=None): |
| 170 | """Adds an image summary for each of the given tensors. |
| 171 | |
| 172 | Args: |
| 173 | tensors: A list of variable or op tensors. |
| 174 | prefix: An optional prefix for the summary names. |
| 175 | |
| 176 | Returns: |
| 177 | A list of scalar `Tensors` of type `string` whose contents are the |
| 178 | serialized `Summary` protocol buffer. |
| 179 | """ |
| 180 | summary_ops = [] |
| 181 | for tensor in tensors: |
| 182 | summary_ops.append(add_image_summary(tensor, prefix=prefix)) |
| 183 | return summary_ops |
| 184 | |
| 185 | |
| 186 | def add_scalar_summaries(tensors, prefix=None, print_summary=False): |
nothing calls this directly
no test coverage detected