Aditya Kurniawan

Results 10 issues of Aditya Kurniawan

Hey, thanks for this great library! Currently, if we try to drop a big weight of nn to be monitored using `add_histogram` it would take quite a while, around 300ms...

https://github.com/salesforce/awd-lstm-lm/blob/32fcb42562aeb5c7e6c9dec3f2a3baaaf68a5cb5/main.py#L277 @Smerity @keskarnitish is this intentional to only updating the `model.parameters()` without `loss.parameters()`?

Since now [AdaptiveLogsoftmaxWithLoss](https://pytorch.org/docs/master/_modules/torch/nn/modules/adaptive.html) is released, is it worth to just use their implementation instead of using the SplitCrossEntropyLoss? It seems we can also use the split method by using `cutoffs`...

This is a PR for new torchtext API in machine translation use case. This includes: - Sample on how to build character and word representation - Embedding model for character...

@zhangguanheng66 I'm proposing a sampler class with similar functionality as the [BucketIterator](https://github.com/pytorch/text/blob/bcb9104680eb9dc978a6bbcc2b9ca46cf2bdbed9/torchtext/data/iterator.py#L241). Let me know what you think of this. Thanks!

# I have * [x] Tested with the latest release * [ ] Tested with the current master branch * [x] Searched for similar existing issues ## Expected behaviour Able...

Based on this tutorial http://pytorch.org/tutorials/advanced/super_resolution_with_caffe2.html, we need to specify the batch_size while exporting the model from pytorch to onnx. In some cases we need a dynamic batch_size for inference, do...

It seems the following line hasn't followed the new API convention in the new version of torchtext? https://github.com/salesforce/matchbox/blob/e29f8ae177218cf03b0b613a7c20fff7ca1919cf/matchbox/data.py#L16 In new torchtext API, there is no `train` param anymore in `def...

For context, I am using Intel Macbook Air 2020. I noticed my machine got extremely sluggish whenever I opened neovide, it's fine if I just opened neovim from terminal directly....

performance
status:needs-response
macos

Hi guys, is there any plans or tutorial that I can refer to in order to load huge file of data? I have two scenarios in mind that I would...

enhancement
help wanted