seg_every_thing
seg_every_thing copied to clipboard
Code release for Hu et al., Learning to Segment Every Thing. in CVPR, 2018.
The resource of VG dataset is overtimed, Can anyone help me to provide the VG dataset? #!/bin/bash wget -O ./lib/datasets/data/vg3k_bbox2mask/instances_vg3k_cocoaligned_train.json \ https://people.eecs.berkeley.edu/~ronghang/projects/seg_every_thing/data/vg3k_bbox2mask/instances_vg3k_cocoaligned_train.json wget -O ./lib/datasets/data/vg3k_bbox2mask/instances_vg3k_cocoaligned_val.json \ https://people.eecs.berkeley.edu/~ronghang/projects/seg_every_thing/data/vg3k_bbox2mask/instances_vg3k_cocoaligned_val.json wget -O ./lib/datasets/data/vg3k_bbox2mask/instances_vg3k_cocoaligned_test.json...
Dear authors, I am trying to download the COCO-aligned annotations for VisualGenome from [link](https://people.eecs.berkeley.edu/~ronghang/projects/seg_every_thing/data/vg3k_bbox2mask/instances_vg3k_cocoaligned_train.json) by running `lib/datasets/data/vg3k_bbox2mask/fetch_vg3k_json.sh`, but I'm getting the 404 error. Could you please re-upload the annotation files...
I am trying to run inference for Part 2 of your code. I am trying to run inference on Google Colab. I followed all the steps and install caffe2 and...
i am getting the following issue when i am trying to run the following command COMMAND : nvidia-docker run --rm -it 5de59a4a77bd python2 tools/train_net.py --multi-gpu-testing --cfg configs/getting_started/tutorial_2gpu_e2e_faster_rcnn_R-50-FPN.yaml OUTPUT_DIR /tmp/detectron-output ERROR...
I think you only report the result of maskXRCNN in semi-supervised setting, do you use it with fully-supervised setting?
Hi, How can I extract the mask attributes (such as color) along with the class label (e.g brown dog)? Thanks
### Expected results What did you expect to see? Expected some output related to the first training with the demo. ### Actual results What did you observe instead? ``` Found...
Hi guys: I have some trouble debugging the following error. I tried some ways to fix it such as checking detectron PATHONPATH, but still doesn't doesn't work me. Can someone...
I convert my dataset to the coco format,the dataset has no segmentation,so i set the "segmentation" =[] in annotations,and set the cfg.TRAIN.MRCNN_LABELS_TO_KEEP = ( ),i also convert the pretrained coco...
Dockerfile errror. There is no /detectron/lib directory. It should just be /detectron/ This : `WORKDIR /detectron/lib` `RUN make` Should be this: `WORKDIR /detectron` `RUN make`