(self, *args)
| 22 | return sess.run([x], feed_dict=feed_dict)[0] |
| 23 | |
| 24 | def make_variable(self, *args): |
| 25 | if len(args) > 1: |
| 26 | return [tf.Variable(k) for k in args] |
| 27 | else: |
| 28 | return tf.Variable(args[0]) |
| 29 | |
| 30 | |
| 31 | class TestPool(TestModel): |
no outgoing calls
no test coverage detected