(self)
| 174 | |
| 175 | |
| 176 | def __repr__(self): |
| 177 | return self.__class__.__name__ + "(" + \ |
| 178 | f"db_path={self.lmdb_dir}, " + \ |
| 179 | f"dataset={self.dataset}, " + \ |
| 180 | f"split={self.split}, " + \ |
| 181 | f"mode={self.mode}, " + \ |
| 182 | f"input_size={self.input_size}, " + \ |
| 183 | f"word_length={self.word_length}" |
| 184 | |
| 185 |
nothing calls this directly
no outgoing calls
no test coverage detected