ankwinters

Results 2 comments of ankwinters

Thanks! It really helps. But compiling boost library always turns out to be failure. I use the precompiled version instead.

According to the page http://pytorch.org/docs/master/_modules/torch/utils/data/dataset.html#Dataset , you need to implement the following methods: **\_\_getitem\_\_** and **\_\_len\_\_** ``` class Dataset(object): """An abstract class representing a Dataset. All other datasets should subclass...