Giter VIP home page Giter VIP logo

Comments (9)

JanuszL avatar JanuszL commented on May 29, 2024

Hi @ShyFoo,

Thank you for reaching out. While we haven't tried this directly yet DALI provides compatibility with PyTorch so you can create a DALI iterator that would behave as PyTorch one.
Have you tried this yet? Have you encountered any issues?

from dali.

JanuszL avatar JanuszL commented on May 29, 2024

I just checked and unfortunately, HuggingFace trainer (I checked only one example so far) expects PyTorch DataIterator (checks for the type of passes object). I still believe it is possible to make DALI work there but I may need a bit of adjustments to the internal methods. If you have some spare time we would be more than happy to review a PR with such an example.

from dali.

ShyFoo avatar ShyFoo commented on May 29, 2024

I just checked and unfortunately, HuggingFace trainer (I checked only one example so far) expects PyTorch DataIterator (checks for the type of passes object). I still believe it is possible to make DALI work there but I may need a bit of adjustments to the internal methods. If you have some spare time we would be more than happy to review a PR with such an example.

Thanks for your reply. Yeah, I have tried integrating DALI into the HuggingFace trainer. As you mentioned, it seems to expect either torch.utils.data.Dataset or torch.utils.data.IterableDataset as input. It might be possible to customize a data collator, which can preprocess data in a DALI pipeline, for the HuggingFace trainer, but I'm not sure if it will work. If you have any idea for this, please let me know. I'm sure it would be a huge step for the whole community!

from dali.

JanuszL avatar JanuszL commented on May 29, 2024

I did some basic investigation:

  • for CV tasks DALI needs to have such wrapper:
    class DALIwrapper(DALIGenericIterator):
        def __init__(self, *args, **kargs):
            super().__init__(*args, **kargs)
    
        def __next__(self):
            batch = super().__next__()
            return batch[0]
        
    pipe_train = GetDaliPipeline(...)
    data_train = DALIwrapper([pipe_train], ["pixel_values", "labels"], reader_name="Reader")
    
  • trainer needs to have these methods replaced:
    trainer.get_train_dataloader = lambda : data_train
    trainer.get_eval_dataloader = lambda x: x
    
    so DALI dataloader is used as is without wrapping into PyTorch DataIterator
  • there is probably another layer of complexity using DALI with a distributed strategy which is handled by accelerate

from dali.

ShyFoo avatar ShyFoo commented on May 29, 2024

For the third point, get_train_dataloader returns self.accelerator.prepare(DataLoader(train_dataset, **dataloader_params)) for a distributed training or evaluation. So what should I do in this setting? Hope for your help.

from dali.

JanuszL avatar JanuszL commented on May 29, 2024

@ShyFoo - I'm afraid I don't know the answer. My idea was to avoid wrapping DALI into DataLoader as it serves as one already. If you have time I would be more than happy to learn your findings.

from dali.

ShyFoo avatar ShyFoo commented on May 29, 2024

e basic investigation:

Got it. I have tried using DALI + DeepSpeed, where I have to define a triaing loop and other practical functions myself, instead of using the Huggingface Trainer for convenience, so I prefer to use DALI, DeepSpeed, and Huggingface Trainer simultaneously if possible.

from dali.

JanuszL avatar JanuszL commented on May 29, 2024

If you have any examples of DALI + DeepSpeed feel free to post them as PR to DALI - we would be more than happy to enrich our documentation and the base of samples.

from dali.

ShyFoo avatar ShyFoo commented on May 29, 2024

Well, I'd be happy to.

from dali.

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.