PyTorch Tutorial 09 - Dataset and DataLoader - Batch Training

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ส.ค. 2024

ความคิดเห็น • 151

  • @3nlighten358
    @3nlighten358 ปีที่แล้ว +40

    If anyone has issues with the data iterator object not having an attribute next. Instead of data = dataiter.next(), try doing data = next(dataiter). Worked for me

    • @CaptainBravo87
      @CaptainBravo87 ปีที่แล้ว +2

      That helped .. thanks

    • @ezdul2404
      @ezdul2404 11 หลายเดือนก่อน

      🤝

    • @abdullahisaahmed5366
      @abdullahisaahmed5366 6 หลายเดือนก่อน

      This also works for me "data = next(iter(dataloader))"

    • @swarnendusekharghosh9539
      @swarnendusekharghosh9539 3 หลายเดือนก่อน

      I am facing the same issue and unfortunately I was unable to resolve by either of the methods . I am using torch = 2.3 version in a Windows system. I tried this and it worked for me:
      if __name__ == '__main__':

      dataset = WineDataset()
      dataloader = DataLoader(dataset=dataset, batch_size=4, shuffle=True, num_workers=2)
      dataiter = iter(dataloader)
      data = next(dataiter)
      features, labels = data
      print(features, labels)

  • @rafiibnsultan
    @rafiibnsultan ปีที่แล้ว +27

    This whole series is a gold mine, any one diving into PyTorch for the first time is highly recommended to follow this playlist.

  • @svennesvensson7530
    @svennesvensson7530 4 ปีที่แล้ว +88

    Ended up here after trying to get tensorflow 2.0 to work properly for 24h, and finally gave up and decided to learn PyTorch instead (installed in 2 min with no problems). Haven´t finished all the tutorials yet, but this is really top quality tutorials. Most tutorials on TH-cam are poorly structured, but this could truly be it´s own Udemy course that you could charge for as someone mentioned (especially with the code repository included). Love the implementations from scratch where you gradually introduce PyTorch classes/methods by replacing code we built from scratch - this is truly a very pedagogic way to learn. Hats off to you sir!

    • @patloeber
      @patloeber  4 ปีที่แล้ว +3

      Thank you for the great feedback!

    • @user-vi5gs6ih6j
      @user-vi5gs6ih6j 3 ปีที่แล้ว +3

      Seriously, I wish I started ML with Pytorch instead of TF.
      At first, the heavy Python put me off since I only had less than 200 hours of experience in serious coding but after a while it all worked much better than I expected.

    • @damianwysokinski3285
      @damianwysokinski3285 3 ปีที่แล้ว

      If you install tf2.0 with conda it takes 10min...

    • @svennesvensson7530
      @svennesvensson7530 3 ปีที่แล้ว

      @@damianwysokinski3285 I am using conda. In theory you are right, that's how it should work - in practice however it was a headache, and literally could not get it to work correctly. Im sure you CAN get it to work just fine, it's just such a hazzle compared to any other library I have ever installed. But maybe this has changed since i tried using it 1 year back.

    • @damianwysokinski3285
      @damianwysokinski3285 3 ปีที่แล้ว

      @@svennesvensson7530 In the autumn 2020, I installed TF2 for the last time

  • @timrorup8738
    @timrorup8738 4 ปีที่แล้ว +34

    For all of you who have multiprocessing issues: Change num_workers in dataloader = 0 instead of 2.

    • @patloeber
      @patloeber  4 ปีที่แล้ว

      Yes, thanks for the hint!

    • @NNote-zs6eo
      @NNote-zs6eo 4 ปีที่แล้ว +12

      if you put your code under if __name__ == '__main__' : it fix the issues, at least my issues......

    • @augurelite
      @augurelite 2 ปีที่แล้ว +1

      THANKS

    • @avddva1367
      @avddva1367 ปีที่แล้ว +1

      It worked! Thanks

    • @Yoyo-sy5kl
      @Yoyo-sy5kl ปีที่แล้ว

      @@NNote-zs6eo This helped me as well

  • @HasanKarakus
    @HasanKarakus 10 หลายเดือนก่อน

    You don't explain it normally. The most explanatory videos I've ever watched. Thanks for your efforts

  • @n.w.4940
    @n.w.4940 3 ปีที่แล้ว +9

    Absolute perfect Tutorials Series as one can clearly learn each step on an easy to understand yet funny and "real world" example other than lots of other Tutorials that always end up with MNIST or something. Really appreciate all the work you clearly put in. Thank you and go on! 👌

  • @GoForwardPs34
    @GoForwardPs34 ปีที่แล้ว +1

    demystifying Machine Learning !
    unpacking the hype!
    pulling back the curtains.
    WOW !!!!
    Masterfully cutting through the fluff
    @Patrick Loeber generations to come shall here of your exploits done here
    Bravo indeed

  • @shadowchantghallanda2609
    @shadowchantghallanda2609 2 ปีที่แล้ว +2

    Hi, Python Engineer, thanks for your intuitive tutorial. I just followed your tutorial 08 and succesfully implemented the logistic regression on the wine data set and got an accurancy of 91.67%.

  • @ARPAN7004
    @ARPAN7004 3 ปีที่แล้ว +1

    was confused about Dataset and Dataloader, and came across this. Have not finished it yet, but, I know, this is what I needed. Thanks for sharing your knowledge in such a nice way. Please keep them coming. Cannot thank you enough.
    Subscribed right away.

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      Glad you like it :) thank you!

  • @henrygory
    @henrygory ปีที่แล้ว +3

    The parallel workers did not work for me. I am using Win11. I had to set "num_workers=0" when calling DataLoader to get it to run.

  • @mlguru3089
    @mlguru3089 4 ปีที่แล้ว +4

    please keep uploading tutorials on pytorch , amazing tutorials!!!

    • @patloeber
      @patloeber  4 ปีที่แล้ว +1

      thank you!

  • @leromerom
    @leromerom 4 ปีที่แล้ว +2

    Very well explained, the logical sequence that you follow is fantastic, without a doubt one the most useful tutorials that I have seen, thank you for your contribution!

  • @GeorgeA7Xxx
    @GeorgeA7Xxx 4 ปีที่แล้ว +3

    This was an incredible video, thank you so so much! Gonna watch this entire series now.

    • @patloeber
      @patloeber  4 ปีที่แล้ว

      Great, thank you!

  • @fahadrahmanamik1104
    @fahadrahmanamik1104 3 ปีที่แล้ว +2

    Just wanna give you a hug for the awesome tutorial. Love you man ❤️

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      Thanks so much :)

  • @mohammadrashidi6214
    @mohammadrashidi6214 ปีที่แล้ว +1

    Very nice tutorials... Thanks a lot. I hope we see more posts from you in the fields of PyTorch and deep learning.

  • @gerben880
    @gerben880 ปีที่แล้ว

    thanks man! the dataset and dataloader classes always confused me, but you explained it really clearly and now i successfully wrote my own dataset class.

  • @user-hw8bh9vl7h
    @user-hw8bh9vl7h 3 ปีที่แล้ว

    Dataloading was always a nightmare to me, until I watched your video. Thank you so much

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      Glad it helped!

  • @kxiong4021
    @kxiong4021 3 ปีที่แล้ว +1

    For people having errors with the datatier.next() line, showing something about freeze_support(), try to move all code except the WineDataset class under a main function, and call the main function with if __name__ == "__main__":
    main(). Not sure why it solved the problem but worked for me!

  • @EEBADUGANIVANJARIAKANKSH
    @EEBADUGANIVANJARIAKANKSH 3 ปีที่แล้ว +3

    i ran into a error while running this code :
    Error:
    raise RuntimeError('DataLoader worker (pid(s) {}) exited unexpectedly'.format(pids_str)) from e
    RuntimeError: DataLoader worker (pid(s) 18988) exited unexpectedly
    Solution:
    set num_workers = 0

  • @genetixx01
    @genetixx01 3 ปีที่แล้ว +1

    In case you have bug like I had, try removing argument "num_workers" in the DataLoader function. It worked for me.

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      yep exactly!

    • @MagufoBoy
      @MagufoBoy 3 ปีที่แล้ว

      in Windows you may also need to add at the beginning,
      if __name__ == '__main__':
      freeze_support()
      # the rest of the code here

  • @connor-shorten
    @connor-shorten 3 ปีที่แล้ว +1

    Such a helpful reference, thanks again!

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      Thanks so much! This means a lot coming from you :)

  • @vikaskapdoskar
    @vikaskapdoskar 4 ปีที่แล้ว

    very simplistically explained. I was way too confused on how to use Dataloaders and Dataset class with csv's and use to end up simply converting to numpy floats and manipulating the whole learning process. It worked fine but then I failed to use the batch training. Wonderful tutorial

    • @patloeber
      @patloeber  4 ปีที่แล้ว

      thank you! I'm glad it is helpful

  • @oleholgerson3416
    @oleholgerson3416 4 ปีที่แล้ว

    Well done. Precise and to the point.

  • @lihanou
    @lihanou 2 ปีที่แล้ว +1

    You didn't separate the trainset and testset. If you use all data for training, what are you going to test with? What really confused me was how to separate a dataset into train_x, train_y and test_x, test_y

  • @wadewang574
    @wadewang574 2 ปีที่แล้ว

    very concise and informative ! I like such style's tutorial !

  • @utkumetin9453
    @utkumetin9453 3 ปีที่แล้ว +1

    Thanks for great lessons, you are doing amazing job in here, keep going.

  • @1111boggy
    @1111boggy 3 ปีที่แล้ว +1

    anlatım çok iyi . cok iyi ingilizce bilmeye gerek yok . otomatik ceviri ile dersi dinledim , alanım yazılım değil ve yine de kodları kendi veri setimde çalıştırdım .

  • @lakeguy65616
    @lakeguy65616 ปีที่แล้ว +1

    I've watched, coded and understand this video. How do I incorporate the train/test split with the dataset class and dataloader class? Thank you!

  • @AbdulQayyum-kd3gf
    @AbdulQayyum-kd3gf 4 ปีที่แล้ว +1

    wonderful explanation

  • @FORCP-bq5fo
    @FORCP-bq5fo 2 หลายเดือนก่อน

    Ten-zaur!!!

  • @valarmorghulisx
    @valarmorghulisx 3 ปีที่แล้ว +2

    thank you so muchh! you are the best. please dont give us lonely! :)

    • @patloeber
      @patloeber  3 ปีที่แล้ว +2

      glad you like it!

  • @user-ks9wt2dm4j
    @user-ks9wt2dm4j 3 ปีที่แล้ว

    thanks from China

  • @killian7486
    @killian7486 3 ปีที่แล้ว +1

    This was very helpful. Great work, have a sub

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      Thank you 🙏🏻

  • @johnmichael1295
    @johnmichael1295 3 ปีที่แล้ว

    Not all heroes wear capes. Thank you very much!

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      glad you like it!

  • @alexlord5981
    @alexlord5981 ปีที่แล้ว

    Very useful and clear. Thank you!!

  • @comedyman4896
    @comedyman4896 5 หลายเดือนก่อน

    If you have a low-end hardware and you get runtime errors try setting num_workers=0 in DataLoader()

  • @hichamsabah31
    @hichamsabah31 ปีที่แล้ว

    Very insightful. Thanks.

  • @tsendo
    @tsendo ปีที่แล้ว +1

    Thanks for the series. Very good to learn PyTorh. For Dataloaer, line 69 produces "AttributeError: '_MultiProcessingDataLoaderIter' object has no attribute 'next'" error. Is it because this part of API has been modified?

    • @krosp
      @krosp 9 หลายเดือนก่อน +2

      use next(datatiter) instead of datatiter.next()

  • @maithilijoshi796
    @maithilijoshi796 ปีที่แล้ว

    thankyou for this

  • @sepgorut2492
    @sepgorut2492 4 ปีที่แล้ว +3

    The code at 14:00 wouldn't work. I checked it through over and over again. Then after reading the blurb on Dataloader i removed the workers (making a default of zero) and it worked. Otherwise, apart from the file path to wine.csv, the code was the same. Any ideas about this?

    • @patloeber
      @patloeber  4 ปีที่แล้ว +3

      Yes this is a known issue with Windows. You made the correct fix by setting the workers to 0. I should have mentioned this...

    • @sepgorut2492
      @sepgorut2492 4 ปีที่แล้ว +1

      @@patloeber Thanks for your attention... albeit after hours of swearing at the computer!

    • @patloeber
      @patloeber  4 ปีที่แล้ว +2

      @@sepgorut2492 sorry about the trouble! Great that you could figure it out!

    • @malevolence89
      @malevolence89 2 ปีที่แล้ว +1

      Had same exact issue, this comment helped to fix it. Thanks.

  • @alirezamohseni5045
    @alirezamohseni5045 3 หลายเดือนก่อน

    excellent

  • @ashishintown
    @ashishintown 6 หลายเดือนก่อน

    If anyone is getting an error implementing this code "data = dataiter.next()"
    Try "data = next(dataiter) "
    This code is tested on pytorch version 2.1.2

  • @pauldonzier7230
    @pauldonzier7230 3 ปีที่แล้ว +1

    Hello,
    Thank you very much for these tutorials, they're the best on TH-cam by far!
    I was just wondering, what's the exact color theme you're using in VS Code ?
    Keep up the great work! :)

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      in this video it's the monokai theme, now I use the Nightowl theme

  • @geezer2867
    @geezer2867 3 ปีที่แล้ว

    Thanks, It's brilliant!

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      Glad you like it!

  • @gabrielavechini7626
    @gabrielavechini7626 3 ปีที่แล้ว

    Help me a lot! Thanks!

    • @patloeber
      @patloeber  3 ปีที่แล้ว +1

      glad it was helpful!

  • @sahhaf1234
    @sahhaf1234 ปีที่แล้ว

    Extremely helpful. But, @5:53 why we write xy[ :,[0] ] instead of xy[ :,0 ]?
    Thanks a lot for sharing your knowledge!!

  • @TowerGaming1
    @TowerGaming1 3 ปีที่แล้ว

    Danke dir!

  • @perronemirko
    @perronemirko 6 หลายเดือนก่อน

    dataiter = iter(dataloader)
    data = next(dataiter)

  • @aminfadaei4056
    @aminfadaei4056 4 ปีที่แล้ว

    Ty it helped alot

  • @user-fk1wo2ys3b
    @user-fk1wo2ys3b 3 ปีที่แล้ว

    Just genious

  • @komorebi0307
    @komorebi0307 ปีที่แล้ว

    so useful! i've learned a lot!!!

  • @ridael-mehdawe4681
    @ridael-mehdawe4681 4 ปีที่แล้ว +1

    appreciated..

  • @popamaji
    @popamaji 4 ปีที่แล้ว +1

    12:03 when did we define input or labels so in 13:46 we can use them

    • @patloeber
      @patloeber  4 ปีที่แล้ว

      we define it at 12:03 like you pointed to ;) this process is called unpacking, so we unpack the inputs and labels from the dataloader and define it in this line

  • @DiegoAndresAlvarezMarin
    @DiegoAndresAlvarezMarin 2 ปีที่แล้ว +1

    This video was not clear :(
    However, thank you very much. Your other videos are great!

    • @patloeber
      @patloeber  2 ปีที่แล้ว

      thanks for the feedback!

  • @SuiGio
    @SuiGio 3 ปีที่แล้ว

    Hi, great tutorial. I was wondering, what if we want to have separate features returned? Would we return x1,x2,y from __getitem__ ? Plus, should we return 2 lengths from __len__ ? Thanks

  • @tanmay_ds
    @tanmay_ds 4 ปีที่แล้ว

    Can we use to different features as input to the model, parallely?
    And if yes, how can we define them while using enumerate function?

  • @Murmur1131
    @Murmur1131 3 ปีที่แล้ว

    Schöne Sache! Grüße aus Hamburg!

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      Danke :) Grüße zurück

  • @stevenrodrig14
    @stevenrodrig14 2 ปีที่แล้ว

    Hello! Thanks for your videos :) I've binged all these just as fast as I did some Netflix shows.
    I was wondering if you have any videos on how to create custom datasets and dataLoaders for custom csv files using TensorDataSets? I'm trying to understand what structure a model() needs if I have custom rgb images from a csv file.
    Thanks again for all your videos!

  • @canernm
    @canernm 3 ปีที่แล้ว +1

    Hi thanks for the video! Quick question: why in our WineDataset's __init__() we did not use the super? In order to initialize the init of the superclass Dataset. Thanks

    • @patloeber
      @patloeber  3 ปีที่แล้ว +2

      nice observation. this is simply because torch.utils.data.Dataset doesn’t define its own __init__ function, otherwise we should have done this

    • @canernm
      @canernm 3 ปีที่แล้ว

      Great, thank you =)

  • @monart4210
    @monart4210 3 ปีที่แล้ว

    Thanks for the video! I am applying a model that initializes variational parameters with random numbers in my PyTorch nn.Module called model (e.g., self.mu_q_alpha = nn.Parameter(torch.randn(10, 3,2))) . model() is called for every batch in every epoch to get the loss for that batch. I assume that I am mistaken, but my initial thought was that by calling model() in every batch, we also always reinitialize the values for the variational parameters to random numbers every time. Could you maybe give me feedback on that?:)

  • @sambhrambasu726
    @sambhrambasu726 8 หลายเดือนก่อน

    when run the code it's show me error and show me multiprocessingdataloader has no attribute next

  • @aliali-tv5ft
    @aliali-tv5ft 3 ปีที่แล้ว

    very niceee

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      Thanks 🙏🏻

  • @balazsgonczy3564
    @balazsgonczy3564 2 ปีที่แล้ว

    Hi I have followed your approach on my dataset and I keep getting his error: "IndexError: Index (427) out of range for (0-99)". Do you have any idea why is that? I am trying to apply it on Windows 10 system. Is it a problem?
    ???????????????????????

  • @schlingelgen
    @schlingelgen ปีที่แล้ว

    When I am trying to adapt this Dataset Class for my own use case I run into an error: RuntimeError: expected scalar type Long but found Float -> when I then read the data in with type np.int32 I get another error: RuntimeError: mat1 and mat2 must have the same dtype
    I then tried to load the input with np.int32 and the labels (int class categories) with np.longlong and that finally worked.
    In another tutorial about feed forward net, the labels are also class categories and the data is read with torchvision.datasets but no dtype is provided. Is this information present in the downloaded files and therefore also read in?

  • @shubhamkapoor8756
    @shubhamkapoor8756 2 ปีที่แล้ว

    Can you suggest how to load leed sports database?The data uploaded on the website is not a csv file but rather two folders named data and visualized .I don't understand how to put them in dataloader

  • @fatemehnaseri397
    @fatemehnaseri397 3 ปีที่แล้ว

    how can i load data which is saved in .pkl format in my google drive ,and then performing codes above on that? thank you.

  • @anas.2k866
    @anas.2k866 2 ปีที่แล้ว

    When my data is stored in json file, how can I adapt your method to my case. Thank you

  • @foodsscenes5891
    @foodsscenes5891 4 ปีที่แล้ว

    Hi Guys,
    I got this error during the execution of the code. Could you please explain to me what is that?
    RuntimeError: DataLoader worker (pid(s) 20384, 24284) exited unexpectedly

    • @patloeber
      @patloeber  4 ปีที่แล้ว +1

      maybe set num_workers=0

  • @popamaji
    @popamaji 4 ปีที่แล้ว

    Hi I have a 8*9 array in which the last 2 columns are results then I made a tuple with 2tensors one with 8*7 and the other with 8*2 dimensions(I checked datasets of ur vids and it seemed they all were a tuple with 2 tensors) but I got this error "stack expects each tensor to be equal size, but got [8, 7] at entry 0 and [8, 2] at entry 1"
    help me please

    • @patloeber
      @patloeber  4 ปีที่แล้ว

      both need to be of same size, so either [8,2] or [8,7]

  • @prakharrajput5427
    @prakharrajput5427 2 หลายเดือนก่อน

    How can we use pandas in dataloader

  • @leoyuanluo
    @leoyuanluo 2 ปีที่แล้ว +1

    all the singe batches

    • @jerry870118
      @jerry870118 ปีที่แล้ว

      tensorflow users get no batches

  • @nicolasgabrielsantanaramos291
    @nicolasgabrielsantanaramos291 4 ปีที่แล้ว

    How do I do when my dataset is 3D. In your case, you have N lines x M columns. In my case one sample is 2D, so I have 2 columns, two features, each of them has 18 points (it is a temporal series, 2 curves). Then I have 180 samples of these. I am confused about what a pass to my self.x

    • @aeklant
      @aeklant 4 ปีที่แล้ว +1

      Don't let the x and y confuse you (the names make them sound like they refer to data dimensions, but they don't). In the examples that he is giving, x represents the training inputs and y represents the corresponding targets. This means that in your case, self.x would be your (180, 18, 2) inputs, while your y would be something like (180,) assuming your target is just one scalar value.

  • @j.frostybeats
    @j.frostybeats ปีที่แล้ว

    pls help!!!
    i get an error in my loss function... i have the same shape as you.. whats wrong??

  • @mariacassiee
    @mariacassiee 3 ปีที่แล้ว

    Hi. How can I convert my folder of images into csv file?

  • @lankanathaekanayake7680
    @lankanathaekanayake7680 2 ปีที่แล้ว

    can you pls explain collate_fn in dataloader

  • @palanichamyramasamy825
    @palanichamyramasamy825 4 ปีที่แล้ว

    Can you post a video for half precision tensors with pytorch autoencoder

    • @patloeber
      @patloeber  4 ปีที่แล้ว +1

      thanks for the suggestion. I will have a look into this...

    • @palanichamyramasamy825
      @palanichamyramasamy825 4 ปีที่แล้ว

      @@patloeber Thanks for the response.please post a video for tensorboard graph with gpu memory tracking vs the epoch and loss

  • @axelanderson2030
    @axelanderson2030 ปีที่แล้ว

    Now do LARGE dataset on a 3080 hardware

  • @alirezag6603
    @alirezag6603 4 ปีที่แล้ว +1

    what ide are u using?

    • @patloeber
      @patloeber  4 ปีที่แล้ว

      VS code. One of my latest tutorials is about my editor setup

  • @Gauravkr0071
    @Gauravkr0071 3 ปีที่แล้ว

    at 7:37, he used dataset= winedataset()
    then first_data= dataset[0], what this means dataset is a object of winedataset class, how winddataset is returning first sample. can anybody explain

    • @horvathbenedek3596
      @horvathbenedek3596 3 ปีที่แล้ว

      Basically, you have
      *class Winedataset(dataset):*
      So Winedataset is a class that inherits from Dataset class
      Then you have
      *dataset = Winedataset()*
      So dataset is an instance of the Winedataset class.
      Then you have
      *first_data = dataset[0]*
      Since dataset INSTANCE inherits from Dataset CLASS, it has a __getitem__() function. Now, I'm no programmer, but it seems to me like Dataset class is written in a way that indexing its instances in a fashion as seem above (that is, *InstanceOfDataset[some_number]* ) acts as the __getitem__() function above - that is, it returns the X[some_number] and Y[some_number] values. X and Y are defined in the __init__() method.
      I hope it's not too late :)

    • @Gauravkr0071
      @Gauravkr0071 3 ปีที่แล้ว

      @@horvathbenedek3596 its never too late , dear sir

  • @vigenisayan2343
    @vigenisayan2343 3 ปีที่แล้ว

    what IDE are you using

  • @ahmadsystems3560
    @ahmadsystems3560 3 ปีที่แล้ว

    OSError: ./data/wine/wine.csv not found. from where i can download wine.csv, anybody can help

    • @patloeber
      @patloeber  3 ปีที่แล้ว

      In my pytorch github repo: github.com/python-engineer/pytorchTutorial

    • @ahmadsystems3560
      @ahmadsystems3560 3 ปีที่แล้ว

      @@patloeber Thank you very much,

  • @user-wq4hh1lj6g
    @user-wq4hh1lj6g 2 หลายเดือนก่อน

    series is not beginner friendly, he directly uses the functions and modules. I dont know how these people are able to understand. We cant solve any other problems even after watching his series. So frustrating

  • @neel5544
    @neel5544 4 ปีที่แล้ว

    Do you use Discord, i want to contact you

    • @patloeber
      @patloeber  4 ปีที่แล้ว

      Not yet. You can contact me on twitter or email :)

  • @taaaaaaay
    @taaaaaaay 3 ปีที่แล้ว

    Can you do a video on using a Dataloader on a very large dataset that will obviously not fit into gpu memory?

    • @patloeber
      @patloeber  3 ปีที่แล้ว +1

      I'll have a look at that...

  • @robosergTV
    @robosergTV 6 หลายเดือนก่อน

    watch at 1.5x speed. Feels like he slowed this video down by 2x