Skip to main content

Questions tagged [pytorch]

PyTorch is a deep learning framework that implements a dynamic computational graph, which allows you to change the way your neural network behaves on the fly and capable of performing backward automatic differentiation.

6 questions with no upvoted or accepted answers
3 votes
0 answers
78 views

I am trying to implement Deep Quaternion Networks. I was able to implement the batch normalization technique. But it requires a lot of GPU memory. Is there any way I can optimize the code provided ...
Shreyas Kamath's user avatar
2 votes
0 answers
110 views

I'm computing higher order derivatives using nested jacobian from pytorch/functorch. $$f(x, y, z, \dots) : R^{m_x} \times R^{m_y}...
I.M.'s user avatar
  • 121
2 votes
0 answers
38 views

I have written the following code to practice parallelizing a PyTorch code on GPUs: ...
Blade's user avatar
  • 337
2 votes
0 answers
185 views

I'm training a GRU auto-encoder and my current code is very slow.I believe it's predict_captions function that takes most the time. Any suggestion to optimize this code? ...
Marzi Heidari's user avatar
1 vote
0 answers
181 views

I wrote a simple neural network binary classification algorithm using Pytorch. It uses the dataset from https://www.kaggle.com/pritsheta/heart-attack, which consists of a table with 300 rows and 14 ...
user3053216's user avatar
0 votes
0 answers
84 views

I have a black & white video as a tensor with the shape [Time, Width, Height] with popcorn noise and I would like to reduce the noise by naively convolving along the time dimension. Using a ...
Seanny123's user avatar
  • 1,617