imatge-upc / detection-2016-nipsws

Hierarchical Object Detection with Deep Reinforcement Learning
http://imatge-upc.github.io/detection-2016-nipsws/
MIT License
423 stars 129 forks source link

adopt your solution to semantic segmentation #9

Closed wenouyang closed 7 years ago

wenouyang commented 7 years ago

Hi,

Thanks for sharing the code. I am curious whether this solution can help solve the binary semantic segmentation problem, such as the one given in https://www.kaggle.com/c/ultrasound-nerve-segmentation

If possible, what are the modifications that I have to make. Thanks a lot.

Yuanyuan

miriambellver commented 7 years ago

Hi!

Our code tackles object detection. The actions are defined for this problem, discretizing the possible bounding boxes at each step. You should think how to define a set of actions useful to discretize the possible segmentations at each time step, which is not trivial.

Míriam

wenouyang commented 7 years ago

Thanks.