tensorflow-deeplab-v3
tensorflow-deeplab-v3 copied to clipboard
DeepLabv3 built in TensorFlow
Hello, thank you for the detailed explanation, but I find myself hard to understand this: Download and extract augmented segmentation data (Thanks to DrSleep), specifying the location with --data_dir and...
"Failed to load the native TensorFlow runtime." and "No model named deeplab_model and preprocessing"
I have already installed tensorflow-gpu=1.12, but it always suggests "No model named deeplab_model and preprocessing". I just to learn this piece, can you answer it?
When I run the command: python train.py --model_dir MODEL_DIR --pre_trained_model PRE_TRAINED_MODEL, where MODEL_DIR=model and PRE_TRAINED_MODEL=pre_trained_model. The error pops out and says: Couldn't find the checkpoint file or checkpoints in the...
Hi, I use your project to train a model, but i did not know how to use GPU instead of CPU to train. thanks!
Hi, first thanks for getting this done. Recently I encountered following problem when I try to run `evaluate.py`: ### tensorflow.python.framework.errors_impl.InvalidArgumentError: Number of ways to split should evenly divide the split...
tensorflow.python.framework.errors_impl.InvalidArgumentError: Number of ways to split should evenly divide the split dimension, but got split_dim 2(size=1) and num_split 3 [[{{node split}} = Split[T=DT_FLOAT, num_split=3, _device="/device:CPU:0"](split/split_dim, ToFloat)]] [{{node IteratorGetNext}} = IteratorGetNextoutput_shapes=[[?,?,?,3],[?,?,?,1]],...
Hello, guys. I got some problems in downloading augmented segmentation data , so I 'd like to ask for your help for datasets. Could you pls send the datasets you've...
In the function "atrous_spatial_pyramid_pooling", (line 21, deeplab_model.py) There is "image_level_features" (line 54--61) ``` # (b) the image-level features with tf.variable_scope("image_level_features"): # global average pooling image_level_features = tf.reduce_mean(inputs, [1, 2], name='global_average_pooling',...