fix import data module

This commit is contained in:
lucasdelimanogueira 2024-05-25 09:55:02 -03:00
parent 9d7417a531
commit 56fff47001
2 changed files with 3 additions and 1 deletions

View file

@ -3,6 +3,7 @@ from .nn import *
from .optim import *
from .utils import *
from .norchvision import *
from . import data
__version__ = "0.0.4"
__author__ = 'Lucas de Lima Nogueira'

View file

@ -1,4 +1,5 @@
from .dataset import *
from .example import *
from .dataloader import *
from .batch import *
from .batch import *
from .distributed import *