PyTorch-Tutorial
PyTorch-Tutorial copied to clipboard
Build your neural network easy and fast, 莫烦Python中文教学
使用的pytorch版本为1.4 Episode: 203 | Ep_r: 3.3 Episode: 204 | Ep_r: 4.04 Episode: 205 | Ep_r: 2.47 Episode: 206 | Ep_r: 0.77 Episode: 207 | Ep_r: 2.5 Episode: 208 | Ep_r:...
It would be great if you could provide a PyTorch implementation of DDPG. I know there is a TF version. BTW your project is awesome! Keep up the great work!
```bash for epoch in range(EPOCH): for step, (x, b_label) in enumerate(train_loader): b_x = x.view(-1, 28*28) # batch x, shape (batch, 28*28) b_y = x.view(-1, 28*28) # batch y, shape (batch,...
In RNNclassification code, Why LSTM do not transmit hidden_state ` r_out, (h_n, h_c) = self.rnn(x, None)`? Can i play the same operation like RNNregression to transmit hidden_state?
Convert x, y, h_state to Variable type when training.
Through reading ur code, I think you update the generator while training the discriminator. We should detach it while training the discriminator, right?
Hi, I fixed CNN tutorials by using `tensor.item`. Thank you.
504_batch_normalization.py cannot plot dynamic histogram, could you help to check the code?