DRAGNLabs / 301r_retnet

2 stars 1 forks source link

Fix iterator bug, add doc strings #42

Closed JayOrten closed 3 months ago

JayOrten commented 3 months ago

This fixes a major bug with the iterator dataset class, namely that the iterator was being created in __init__. Instead, it should be recreated in the __iter__ function, every time the data is run through.

Also, this adds doc strings to the dataset class.