py-bottom-up-attention
py-bottom-up-attention copied to clipboard
PyTorch bottom-up attention with Detectron2
If you do not know the root cause of the problem / bug, and wish someone to help you, please post according to this template: ## Instructions To Reproduce the...
## ❓ How to use Detectron2 Questions like: I had the following problem after installing requirements: AttributeError: module 'setuptools.errors' has no attribute 'CompileError' NOTE: 1. If you met any unexpected...
## ❓ How to use Detectron2 edit 1: Sorry It's from LXMERT.. I was confused. but anyway It would be very helpful if I can get an answer! Thanks for...
Hi, Thanks for sharing your job. I'm interested in using this approach to extract features with attributes. I have installed Detectron's 2 v0.1.1 (around March 2020), PyTorch1.4 and I'm using...
> Great to know that. I have added the link to your project to the Readme file. > > BTW, I noticed that the attribute head is closed [here](https://github.com/MILVLG/bottom-up-attention.pytorch/blob/57e66ef2cc3732c2403aa78ef68579e57064c41e/configs/bua-caffe/extract-bua-caffe-r101.yaml#L11). It...
Thanks for your effort to migrate the slightly modified Faster-RCNN from Caffe to PyTorch! Your [README.md](https://github.com/airsplay/py-bottom-up-attention/blob/master/README.md) states that > The detectron2 system with **exact same model and weight** as the...
## Instructions To Reproduce the Issue We extracted features of the COCO train2017 split with the `detectron2_mscoco_proposal_maxnms.py` script. This completed without errors. Afterwards we try to read in the features...
Thanks for your codes and models! I notice that you have provided the model trained with 10-100 bbxes. I wonder how I can use this model to predict 10-100 bbxes...
## Feature prediction given boxes If I want to predict features given box coordinates, following the script in your demos, are the coordinates to provide in the format XYXY, or...
Questions like: I use the following code to extract features based on the FPN model. The config is: "COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml" Feature extraction code: ''' img_path = "input.jpg" img_ori = cv2.imread(img_path) height,...