(self)
| 26 | |
| 27 | class TestDraw(unittest.TestCase): |
| 28 | def test_draw_net(self): |
| 29 | for filename in getFilenames(): |
| 30 | net = caffe_pb2.NetParameter() |
| 31 | with open(filename) as infile: |
| 32 | text_format.Merge(infile.read(), net) |
| 33 | caffe.draw.draw_net(net, 'LR') |
| 34 | |
| 35 | |
| 36 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected