tensorflow-densenet
tensorflow-densenet copied to clipboard
Tensorflow-DenseNet with ImageNet Pretrained Models
I understand that MNIST is a grayscale image so how to make this code work with GrayScale images, it works fine with RGB images $python train_image_classifier.py --train_dir=${TRAIN_DIR} --dataset_name=mnist --dataset_split_name=train --dataset_dir=${DATASET_DIR}...
Hi! Thank you for your great code! I got a excellent performance by using your pre-trained model. But when I trained 121-densenet on ImageNet from scratch by using your network...
hi, when I restore your pre_trained model, there raise some mistake NotFoundError (see above for trackback): Key densenet121/dense_block1/conv_block2/*1/Conv/biases not found in the checkpoint here is my code x=tf.placeholder("float",[None,224,224,3]) y=tf.placeholder("float",[None,num_classes]) logits,...