adversarial-frcnn icon indicating copy to clipboard operation
adversarial-frcnn copied to clipboard

A-Fast-RCNN (CVPR 2017)

Results 18 adversarial-frcnn issues
Sort by recently updated
recently updated
newest added

hi would you be able to release your code in pytorch instead of caffe please?

It's an amazing work, I have read your paper and it impresses me a lot. But when I read your adversarial-frcnn/models/pascal_voc/VGG16/fast_rcnn_adv/train.prototxt , I can only find ASDN, and where is...

![image](https://user-images.githubusercontent.com/35124030/62858879-277a9100-bd2e-11e9-89ec-0c47b7d1f464.png)

from utils.cython_bbox import bbox_overlaps ImportError: No module named cython_bbox

when i was implement ASDN on faster rcnn,in the third stage,training faster_rcnn_adv,the loss of asdn was 0,could you tell me what should i change except the prototxt file?

As i run the train.sh i met this issue: File "/home/cui/adversarial-frcnn/tools/../lib/roi_data_layer/minibatch.py", line 343, in _sample_rois fg_inds, size=fg_rois_per_this_image, replace=False) File "mtrand.pyx", line 1187, in mtrand.RandomState.choice (numpy/random/mtrand/mtrand.c:18864) TypeError: 'numpy.float64' object cannot be...

I want to train this net using my own dataset. I have successfully set the data, however, the number of class need to be modified and some model layers cannot...

I benefited from your article. I ran into this problem while running my own data. I found the problem mainly comes from: ASDNPretrainLabelLayer->forward() top[0].reshape(*(conv_feat_pos.shape)) top[0].data[...] = conv_feat_pos.astype(np.float32, copy=False) Since all...