We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try to use my custom dataset with the given AutoEncoder example but when it starts it raises following error
aining) 225 str(type(self.model)), func_i+1, len(self.train_functions), self.n_epoch, str(continue_training)) 226 --> 227 log.debug("Train dataset size is: %s", self.dataset.getDataShape(datasets.TRAIN)) 228 if self.dataset.hasSubset(datasets.VALID): 229 log.debug("Valid dataset size is: %s", self.dataset.getDataShape(datasets.VALID)) /home/retina18/Downloads/opendeep/opendeep/data/dataset.py in getDataShape(self, subset) 111 if subset is TRAIN: 112 log.error("No training shape implemented") --> 113 raise NotImplementedError("No training shape implemented") 114 elif subset is VALID: 115 log.error("No valid shape implemented") NotImplementedError: No training shape implemented
The text was updated successfully, but these errors were encountered:
Fix Error by MemoryDataset 2 #7: implemented getDataShape for
6310d4d
MemoryDataset
Should be fixed now, thanks for pointing it out!
Sorry, something went wrong.
No branches or pull requests
I try to use my custom dataset with the given AutoEncoder example but when it starts it raises following error
The text was updated successfully, but these errors were encountered: