flat concat input :param xs: a list of tensor :return: flat tensor
(self, xs)
| 301 | return tf.reduce_mean(all_kls) |
| 302 | |
| 303 | def _flat_concat(self, xs): |
| 304 | """ |
| 305 | flat concat input |
| 306 | :param xs: a list of tensor |
| 307 | :return: flat tensor |
| 308 | """ |
| 309 | return tf.concat([tf.reshape(x, (-1, )) for x in xs], axis=0) |
| 310 | |
| 311 | def get_pi_params(self): |
| 312 | """ |
no outgoing calls
no test coverage detected