(self, vgg19_npy_path=None)
| 16 | class Vgg19: |
| 17 | |
| 18 | def __init__(self, vgg19_npy_path=None): |
| 19 | |
| 20 | self.data_dict = np.load(vgg19_npy_path, encoding='latin1', allow_pickle=True).item() |
| 21 | print('Finished loading vgg19.npy') |
| 22 | |
| 23 | |
| 24 | def build_conv4_4(self, rgb, include_fc=False): |
nothing calls this directly
no outgoing calls
no test coverage detected