GithubHelp home page GithubHelp logo

Comments (33)

davidbuniat avatar davidbuniat commented on May 14, 2024 1

Hi, I am training my model on MNIST dataset but it's taking way too long on Colab (3 hrs per epoch).
The model seems to be running fine.

I wanted to know

  • Do datasets from hub take a bit longer to train?
  • Should I change the model?
  • Should I proceed to the upload dataset part and send a PR so you can review it?

It is not supposed to take that long, can you please proceed with the PR with collab link. I will give a try and see what's wrong.

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024 1

@thisiseshan for uploading to work, the user would need to authenticated inside collab. We don't have yet token so my guess would be tricky to do with colab.

I think this would be out of scope for the first tutorial. We can do a separate PR for uploading the dataset with colab and add any required functionality :)

from deeplake.

mikayelh avatar mikayelh commented on May 14, 2024 1

Hi @thisiseshan! Thanks so much for following up. We will be reviewing the code shortly. Meanwhile, if there is any other task in the project board you'd like to work on, feel free to let us know!

from deeplake.

mikayelh avatar mikayelh commented on May 14, 2024 1

thank YOU, @thisiseshan :)

from deeplake.

muskanlalit18 avatar muskanlalit18 commented on May 14, 2024 1

Hi, @muskanlalit18 ! Hope this finds you well.

Dropping a note to check in on you and ask if you need a hand with uploading the dataset. Feel free to ask us in the GitHub Discussions (we have beta access!) or our dedicated Slack channel. Thanks a mil!

Hi, I'm working on it, I shall ask in the Discussions if I need any help.

from deeplake.

Paola351 avatar Paola351 commented on May 14, 2024

I can do this i you need help

from deeplake.

keshav340 avatar keshav340 commented on May 14, 2024

can I do this? It is easy for me.

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024

can I do this? It is easy for me.

Assigning you as well, to avoid replication of the task, please think of the extended introduction of Hub to an user.

from deeplake.

Paola351 avatar Paola351 commented on May 14, 2024

Sorry, i have to give up as I'm very busy in these days, sorry!

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024

Sorry, i have to give up as I'm very busy in these days, sorry!

No worries at all, thanks for thinking of us!

from deeplake.

Tanujcbe avatar Tanujcbe commented on May 14, 2024

@davidbuniat Can I work on it?

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024

Thanks for your willingness to contribute. @Tanujcbe assigning you the task.

from deeplake.

Tanujcbe avatar Tanujcbe commented on May 14, 2024

@davidbuniat Please accept pull request #83

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024

@Tanujcbe thanks for the PR. Probably the issue was not clear enough from the beginning.

We are looking for a Hub tutorial on Google Colab to demonstrate the user Hub in action, e.g. how users can create datasets and load them into pytorch/tensorflow.

Finally we look for adding the created notebook into the readme.

from deeplake.

thisiseshan avatar thisiseshan commented on May 14, 2024

Hi. Is this issue resolved?
I find this repo interesting and would wish to contribute to this issue.

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024

@thisiseshan thanks for your interest, no this issue is still pending, would love your help!

from deeplake.

thisiseshan avatar thisiseshan commented on May 14, 2024

Thank you for assigning this to me, would MNIST classification be an appropriate example?

from deeplake.

muskanlalit18 avatar muskanlalit18 commented on May 14, 2024

Hi, this looks interesting. I would like to work on it too

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024

Thank you for assigning this to me, would MNIST classification be an appropriate example?

@thisiseshan yes, as long as you the tutorial demonstrates in very simple terms the main values of the package Mnist is fine.
@muskanlalit18 assigning you the task as well, please feel free to choose another dataset.

from deeplake.

drashtipatel2503 avatar drashtipatel2503 commented on May 14, 2024

Hii, can I go for this?

from deeplake.

muskanlalit18 avatar muskanlalit18 commented on May 14, 2024

@muskanlalit18 assigning you the task as well, please feel free to choose another dataset.

Thanks for assigning it to me, should I try CIFAR classification example?

from deeplake.

AbhinavTuli avatar AbhinavTuli commented on May 14, 2024

Sure @muskanlalit18 CIFAR sounds good! Feel free to post here or in the discussions https://github.com/activeloopai/Hub/discussions if you need any help.

from deeplake.

thisiseshan avatar thisiseshan commented on May 14, 2024

Hi, I am training my model on MNIST dataset but it's taking way too long on Colab (3 hrs per epoch).
The model seems to be running fine.

I wanted to know

  • Do datasets from hub take a bit longer to train?
  • Should I change the model?
  • Should I proceed to the upload dataset part and send a PR so you can review it?

from deeplake.

thisiseshan avatar thisiseshan commented on May 14, 2024

Hi! Please review my PR and let me know your thoughts. I can make necessary changes.

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024

@thisiseshan added comments there, please also take a look at other examples of colabs to demostrate core values of hub.

from deeplake.

thisiseshan avatar thisiseshan commented on May 14, 2024

Hi, Current functionality implemented to Colab is:
[PyTorch]

  • Load MNIST dataset using Hub
  • Create Model
  • Train model on dataset
  • Print Accuracy of Model from Test subset

Should the 'upload dataset' be integrated to this notebook. If Yes, What dataset is to be uploaded as an example (should I use the same example as in docs)?

from hub import dataset, tensor

tensor1 = tensor.from_zeros((20,512,512), dtype="uint8", dtag="image")
tensor2 = tensor.from_zeros((20), dtype="bool", dtag="label")

dataset.from_tensors({"name1": tensor1, "name2": tensor2})

dataset.store("username/namespace")

from deeplake.

thisiseshan avatar thisiseshan commented on May 14, 2024

Okay perfect!

from deeplake.

thisiseshan avatar thisiseshan commented on May 14, 2024

Hi. I have made the fixes. Please let me know your thoughts and any changes you need :)

from deeplake.

mikayelh avatar mikayelh commented on May 14, 2024

Hi, @muskanlalit18 ! Hope this finds you well.

Dropping a note to check in on you and ask if you need a hand with uploading the dataset. Feel free to ask us in the GitHub Discussions (we have beta access!) or our dedicated Slack channel. Thanks a mil!

from deeplake.

thisiseshan avatar thisiseshan commented on May 14, 2024

Sure, Thank you!

from deeplake.

mikayelh avatar mikayelh commented on May 14, 2024

Hi, @muskanlalit18, thanks!

from deeplake.

davidbuniat avatar davidbuniat commented on May 14, 2024

@muskanlalit18 please take a look at @thisiseshan contribution colab and feel free to think of another exciting tutorial to demonstrate hub capabilities. e.g. uploading a dataset or more advanced use case such as training coco.

from deeplake.

mynameisvinn avatar mynameisvinn commented on May 14, 2024

Closing this due to inactivity, will reopen if theres widespread interest.

from deeplake.

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.