(self)
| 101 | 'Caffe built without Python layer support') |
| 102 | class TestPythonLayer(unittest.TestCase): |
| 103 | def setUp(self): |
| 104 | net_file = python_net_file() |
| 105 | self.net = caffe.Net(net_file, caffe.TRAIN) |
| 106 | os.remove(net_file) |
| 107 | |
| 108 | def test_forward(self): |
| 109 | x = 8 |
nothing calls this directly
no test coverage detected