About 50 results
Open links in new tab
  1. IMDB in PyTorch - Part 1 (2019) - fast.ai Course Forums

    Feb 23, 2019 · Hello everyone, I have been trying to replicate some of the notebooks in the fastai course in pure PyTorch(to understand more whats happening behind the scenes). I am currently working on …

  2. RNN loop uses previous time step’s hidden state to predict current ...

    Nov 13, 2020 · Hi, I’ve just begun using Pytorch and was going through the RNN example in https://pytorch.org/tutorials/intermediate/char_rnn_classification_tutorial. As per my understanding, …

  3. Custom RNN training/batching correctly? - fast.ai Course Forums

    Jan 21, 2019 · PyTorch default RNN has batching by default forward pass wants 3D tensors. My custom GRU class accepts input as 3D tensor [batches, characters, vectors] where characters are input …

  4. Problem with Shap Deep Explainer in fastai model

    Dec 30, 2020 · Use SHAP Values for PyTorch RNN / LSTM deep-learning, pytorch, lstm, recurrent-neural-network asked by Quastiat on 07:37PM - 15 Oct 19 UTC

  5. How to tell which layers are frozen? - fast.ai Course Forums

    Apr 6, 2018 · The RNN_Encoder is an nn.Sequential model (subclass) that contains two layers. For things that aren’t sequential models it starts to become a bit difficult to say how many layers they …

  6. Assertion Error - Pytorch - Beginner (2018) - fast.ai Course Forums

    Apr 14, 2018 · Assertion Error - Pytorch Part 1 (2018)Beginner (2018) abhinavbh08 (Abhinav Bhatt) April 14, 2018, 8:04pm 1

  7. Distributed training with shared memory - fast.ai Course Forums

    Jun 21, 2020 · After digging around Pytorch distributed launch utility now I understand that it uses subprocess.Popen () hence memory sharing may not be possible, instead torch.multiprocessing is …

  8. RNN Backprop Derivations - Blog Post - fast.ai Course Forums

    Aug 4, 2018 · Dear all, after developing some intuition about RNNs from lectures 6 & 7, I took it upon myself to derive all the maths required to backprop through an RNN. I have written a detailed …

  9. Use PackedSequence in RNNcore to improve pooling accuracy (and …

    Oct 22, 2018 · In the current implementation, the RNN output pooling calculates the average of the entire tensor including the padding. This pooling creates inconsistent behavior when predicting …

  10. PyTorch - Best way to get at intermediate layers in VGG and ResNet?

    Sep 25, 2017 · Just getting started with transfer learning in PyTorch and was wondering … What is the recommended way(s) to grab output at intermediate layers (not just the last layer)? In particular, how …