scene-graph-TF-release
scene-graph-TF-release copied to clipboard
"Scene Graph Generation by Iterative Message Passing" code repository
On running this command: ./experiments/scripts/test.sh mini-vg -1 \ dual_graph_vrd_final 2 \ checkpoints/dual_graph_vrd_final_iter2.ckpt \ viz_cls \ 0 I was getting Error: . . I tensorflow/core/common_runtime/bfc_allocator.cc:696] Sum Total of in-use chunks: 1.42GiB...
@danfeiX Hi, recently I read your code and I am confused about the line 31 in function [create_graph_data](https://github.com/danfeiX/scene-graph-TF-release/blob/master/lib/roi_data_layer/data_utils.py#L31), why condition out_ids >= 0 and condition in_inds >=0 should meet at...
Hello @danfeiX I have bounding box proposals and object categories for a dataset and I am trying to evaluate the predicate classification task for the same. I was wondering if...
from 100 to 108 in scene-graph-TF-release/lib/datasets/viz.py for i, bbox in enumerate(rois): if int(labels[i]) == 0 and i not in rel_inds: continue ax.add_patch( plt.Rectangle((bbox[0], bbox[1]), bbox[2] - bbox[0], bbox[3] - bbox[1],...
Hi, I get a "module object has no attribute 'RegisterShape' error generated from this file. I have changed ``` @tf.RegisterShape('RoiPool') ``` to ``` @ops.RegisterShape('RoiPool') ``` I am unfamiliar with tensorflow...