densecap-tensorflow icon indicating copy to clipboard operation
densecap-tensorflow copied to clipboard

Re-implement CVPR2017 paper: "dense captioning with joint inference and visual context" and minor changes in Tensorflow. (mAP 8.296 after 500k iters of training)

Results 14 densecap-tensorflow issues
Sort by recently updated
recently updated
newest added

Hi, I am running a code on ubuntu server. I uploaded this project in my home directory and trying to generate captions on custom images using `$ bash scripts/dense_cap_demo.sh output/ckpt...

File "/raid/wwb/densecap-tensorflow-master/tools/../lib/dense_cap/train.py", line 485, in train_net sw.train_model(sess, max_iters) File "/raid/wwb/densecap-tensorflow-master/tools/../lib/dense_cap/train.py", line 356, in train_model blobs = self.data_layer.forward() File "/raid/wwb/densecap-tensorflow-master/tools/../lib/fast_rcnn/layer.py", line 99, in forward blobs = self._get_next_minibatch() File "/raid/wwb/densecap-tensorflow-master/tools/../lib/fast_rcnn/layer.py", line 95,...

Hi. When reading your code, I confused that why the context feature is implemented as in the code: $ROOT/lib/nets/network/py line:340 ``` global_feature, region_features = tf.split(region_features, [1, -1], axis=0) ``` around...

It is clearly slow, but is it better? Why should we use beam search, or not?

I found the error line is from 'lib.utils.cython_bbox import bbox_overlaps'. And there is no 'cython_bbox' in 'lib.utils'. How can I fix this problem? Thank you very much.

Hi, when I train the model with version 1.2 of Visual Genome Dataset. An error appears: Traceback (most recent call last): File "/home/XXX/Documents/densecap-tensorflow/tools/train_net.py", line 215, in main() File "/home/XXX/Documents/densecap-tensorflow/tools/train_net.py", line...

Hi, can you tell me why you use the training data to build vocabulary and not use the complete data?

Hi, what is the spec of the training and the testing set of the model used