tensorflow-vgg
tensorflow-vgg copied to clipboard
Re-implementation of VGG Network in tensorflow
(windows7+Python 3.6.4+TensorFlow 1.7) When I run python train_model_simple.py experiment.yaml , an error occur. Error: from skdata.cifar10.dataset import CIFAR10 ModuleNotFoundError: No module named 'skdata' How should I do,help me. Thanks
(windows7+Python 3.6.4+TensorFlow 1.7) When I run python train_model_simple.py experiment.yaml , an error occur. Error: 'function' object has no attribute 'config_file' they are happens in parser = argparse.ArgumentParser() parser.add_argument('config_file', help='YAML formatted...
in vgg.py, line 21, `net = tf.sub(input_tensor, mu, name="input_mean_centered")` latest version of tensorflow (1.3) should be `net = tf.subtract(input_tensor, mu, name="input_mean_centered")`
In vgg.py, block 3 only contains 2 conv layers and 1 pool layer. However, from the paper, it shows there should be 3 conv layers and 1 pool layer in...
Line 77 in train_model_simple.py: `log = tools.MetricsLogger(train_log_fpath)` Also line 57 in train_model_parallel.py: `log = tools.MetricsLogger(train_log_fpath)`
Problem : [The bug](https://github.com/huyng/tensorflow-vgg/blob/master/train.py#L19) Cause: [size: A 1-D int32 Tensor of 2 elements: new_height, new_width. The new size for the images.](https://www.tensorflow.org/api_docs/python/image/resizing#resize_images)