AustinDoolittle / Pytorch-Gain

An implementation of GAIN heatmap network in pytorch. Original paper: https://arxiv.org/abs/1802.10171
30 stars 16 forks source link

Running VOC2012 #1

Closed RBirkeland closed 6 years ago

RBirkeland commented 6 years ago

Hey,

I'm trying to replicate the results from the paper, by training it on the VOC2012 dataset (same as the paper), however it's not quite clear what the folder structure should look like from your help manual.

Could you give an example of what folder structure main.py is expecting?

Also does the network only accept one input size due to the argument --input-dims?

Thank you.

RBirkeland commented 6 years ago

Ok think I've figured it out. It does not out of the box support the VOC2012 dataset as in the paper, but rather root/labels/images, and input-dims is not the input size but rather the size to transform the input images to.

However, there does not seem to be support for semi-supervised learning with pixel level masks as described in the paper. I might try to implement that myself in the future.

AustinDoolittle commented 6 years ago

Sorry it took so long to get back to you, I stopped short of implementing the semi supervised segmentation as described in the paper. It is definitely something I intend to implement in the near future, but contributions are more than welcome!

hchoi71 commented 3 years ago

Hello, I know this session was closed a few years ago, but do you have any updates on how to load VOC2012 dataset to train the model?