Jetson Nano Jupyter Notebook outsize docker container - dataset package

In the Jetson nano AI training, Nvidia is using a docker container in which they include the following line (classification python code): from dataset import ImageClassificationDataset
I would like to run the same code outside docker container, using Jupyter Notebook. How can I download dataset library/package ? I have been trying to get it and searching in the internet, but not luck. The rest of the library are working properly (Torch, Torchvision, etc.), but dataset package cannot be found anywhere.

Hi @facruz, there is a copy of the Nano DLI notebooks / code here: GitHub - sangyy/jetson-dlinano: courses.nvidia.com getting started

The ImageClassificationDataset class is in this module: https://github.com/sangyy/jetson-dlinano/blob/master/classification/dataset.py

Or you can just copy it out of the container by copying the notebooks/code to the mounted data directory.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.