GithubHelp home page GithubHelp logo

Comments (5)

javier-cazana avatar javier-cazana commented on May 13, 2024

Hi there @lireagan

thanks for opening the issue and sorry for the delay, I am a bit buys these days but I aim to come back to the package soon

Regarding your request, at the moment you can't. DataLoader are built internally here:

train_loader = DataLoader(

within the main "collector" class WideDeep. The idea is that the user inputs arrays the rest in handled internally. I guess I could add the option of passing directly a loader to the .fit method, but that would require changing some code.

Alternatively, you could tell me what you want to do and maybe you can already do it with the package (?)

from pytorch-widedeep.

lireagan avatar lireagan commented on May 13, 2024

@javier-cazana

Thank you for your response! There are 2 reasons why i want to use customized dataloader:

  1. If I only use csv files as input, it will load the whole dataset on cpu memory, and when the dataset is very large(for example, 2M samples), it will result in OOM. So I want to use some dataloaders which support batch-input.
  2. in some cases, my datasets are not save locally, they maybe on cloud, so I need the customized dataloaders provided by the cloud company.

from pytorch-widedeep.

javier-cazana avatar javier-cazana commented on May 13, 2024

Hi @lireagan

ok, yeah, possibly the easiest option would be refactoring the code to allow custom dataloaders, I will think how to do that smoothly.

In the meantime:

  1. You could code you own batch generator, generate batches out of np arrays and pass them to the model. Bear in mind that one of the reason why I designed the dataloader as I did is because all components (wide, deep, text, image) have to be loaded in the same order (and you cannot do "random" data augmentation)

  2. let's say that your data is on S3. You can still download it locally and then pass it to the model? I mean, eventually is going to happen anyway, at some point during the process the data will be in your RAM, so you could design a process by which: S3 -> RAM (array) -> model (? )

Maybe I don't see all the process (or the whole pic), but let me know if this helps. I will try to add examples for those two solutions and let you know when I am done. I am bit busy these days, but I will do my best!

from pytorch-widedeep.

lireagan avatar lireagan commented on May 13, 2024

Yes, I'm refactoring the fit function and use my batch generator as an alternative.
The question 2 is that, the cloud provide a on-line read function:

reader = common_io.table.TableReader(table_name, selected_cols)
data = reader.read(num_records)

And I want to use this API to construct my own Dataset and generate batch-size inputs.

from pytorch-widedeep.

jrzaurin avatar jrzaurin commented on May 13, 2024

Ok, I see...

I will then look to add that functionality in the future.

Going to close this issue. I will re-open it if needed

Thanks for the issue @lireagan

from pytorch-widedeep.

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.