Keras_HED_with_model icon indicating copy to clipboard operation
Keras_HED_with_model copied to clipboard

class DataParser() has a problem

Open 154461013 opened this issue 6 years ago • 1 comments

TypeError: 'range' object does not support item assignment need changed to self.all_ids = np.arange(self.n_samples)#range(self.n_samples)

154461013 avatar Jan 30 '19 07:01 154461013

self.all_ids = list(range(self.n_samples))

AHNUXFF avatar Oct 17 '19 10:10 AHNUXFF