torch icon indicating copy to clipboard operation
torch copied to clipboard

R Interface to Torch

Results 173 torch issues
Sort by recently updated
recently updated
newest added

Hi all, I'm using the apple M1 chip but I found R torch does not work, while the pytorch installed via conda works. I was wondering if it possible to...

I have some code [here](https://github.com/egillax/torchComparison) where I'm running the same models on the same random data to compare torch in R vs pytorch. One thing that I'm noticing is that...

`torch_tile()` seems to be expecting its `dim` argument to follow R dimension numbering convention (1, 2, ...) and subtracts 1 before passing on the call - but dim here really...

bug

`Adam` (unsurprisingly I guess) thanks!

feature request

I think it would be very useful to have learning rate schedulers - `lr_cyclic() `(https://arxiv.org/abs/1506.01186, Python source at https://pytorch.org/docs/stable/_modules/torch/optim/lr_scheduler.html#CyclicLR), and - `lr_cosine_annealing_warm_restarts()` (https://arxiv.org/abs/1608.03983, Python source at https://pytorch.org/docs/stable/_modules/torch/optim/lr_scheduler.html#CosineAnnealingWarmRestarts) Would anyone be...

This would allow calling JIT registered operators without the need to manually create wrappers in C++. For future reference: We need to port the logic here into R: https://github.com/pytorch/pytorch/blob/47834679ba2f869e66450a74e2add4c04f0006e9/torch/csrc/jit/python/pybind_utils.h#L874-L947 Once...

lantern

Please change the startup script when loading the library so that library("torch") does not install anything automatically. IMHO this is highly non-standard and counter-intuitive behaviour. Instead I think it is...

Hello, Is there a chance that lantern get compiled and provide support for running on non-nvidia GPU cards through [PlaidML](https://github.com/plaidml/plaidml/tree/master/plaidml2/bridge/pytorch) & OpenCL 1.2 or any alternative ?

Hi! First of all, huge congratulations on the first release! Very exciting!!! This isn't a critical issue since most (if not all) people are going to be using this library...

I am interested in some of the functionality of torch.autograd.functional (https://github.com/pytorch/pytorch/blob/master/torch/autograd/functional.py) in Pytorch for R (especially `jvp()` and `jacobian()`). Is there plans for adding this functionality to R `torch`? I...