Giter Site home page Giter Site logo

Comments (1)

ankwinters avatar ankwinters commented on July 30, 2024 1

According to the page http://pytorch.org/docs/master/_modules/torch/utils/data/dataset.html#Dataset ,
you need to implement the following methods: __getitem__ and __len__

class Dataset(object):
    """An abstract class representing a Dataset.

    All other datasets should subclass it. All subclasses should override
    ``__len__``, that provides the size of the dataset, and ``__getitem__``,
    supporting integer indexing in range from 0 to len(self) exclusive.
    """
    def __getitem__(self, index):
        raise NotImplementedError

    def __len__(self):
        raise NotImplementedError

    def __add__(self, other):
        return ConcatDataset([self, other])

This is a sample showing what I have done before.

class Dataset(torch.utils.data.Dataset):
    def __init__(self, img_dir, label_dir):
        # Load images & labels
        self.image_files = [f for f in glob.glob(img_dir + '/*.bmp')]
        self.label_files = [label_dir + '/' + f.split('/')[-1].split('.')[0] + '.bmp'
                          for f in self.image_files]
        # Do something

    def __len__(self):
        return len(self.image_files)

    def __getitem__(self, idx):
       # Do something
       image = self.images[idx]
       label = self.labels[idx]
       return image, label

from yolo2-pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.