examples icon indicating copy to clipboard operation
examples copied to clipboard

A set of examples around pytorch in Vision, Text, Reinforcement Learning, etc.

Results 210 examples issues
Sort by recently updated
recently updated
newest added

In Fast Style Transfer, it seems like there is no tanh layer at the end of TransformerNet model. There is no gurantee that output values fti in certain range e.g....

good first issue

Can this project continue training from the last saved weight?I trained one epoch with seven hours.and now I want to train on it basis

help wanted

I have a question about the weight intialization of embedding layer. In source code of PyTorch, the weight of embedding layer is initialized by [N(0, 1)](https://github.com/pytorch/pytorch/blob/master/torch/nn/modules/sparse.py#L105). In this code, the...

good first issue

I want to know why the varaibels in __getitem__ function can be clear 0 in one epoch?

triaged

In the mnist example there should be explicit comments about the default nature of the `F.nll_loss` which is to average the results over the mini-batch. The other thing that can...

good first issue

it works when compiling but there is an error when running: *** Error in `./build/dcgan': free(): invalid pointer: 0x00007fff6ab284b8 *** The case is dcgan.cpp. The othor cpps also have this...

c++

Hi everyone , I saw many example of visualizing CAM with python using "register_backward_hook" but can't find any way to do the same in C++ frontend. Is there away to...

c++

Hi, I ran the single node training and it ran normally. I want to monitor the bandwidth of the process in one single machine. I used `iptraf-ng` on CentOS 7....

triaged

The current codebase of [`word_language_model/generate.py`](https://github.com/pytorch/examples/blob/master/word_language_model/generate.py) uses a single (randomly sampled) index as `input` and generates a text based on this. Now, I'd like to extend this a bit and would...

nlp

I've been trying to apply the solution mentioned in this issue and related issues it references to use my 16x16 image dataset for training / generation: https://github.com/pytorch/examples/issues/486 I modified my...

vision