Search found 1 match
- Mon Jun 07, 2021 5:32 am
- Forum: Main Forum
- Topic: I have some questions about ResPRE
- Replies: 5
- Views: 10218
Re: I have some questions about ResPRE
Hello, Thank you for your interest in ResPRE! 1) The len() function will internally call __len__ to return the length of the object. Our implementation is: def __len__(self): return self.length The __getitem__ function will vary depending on your data loader implementation. We have not released our ...