Sigrid Keydana

Results 17 issues of Sigrid Keydana

`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...

I'll split this in three sections: - allowing for existing libtorch to be used when building lantern - bug in pytorch cmake config - allowing for existing libtorch to be...

Not sure if we want this: ``` with (cuda_device(1)), { t1

feature request

``` torch.set_default_tensor_type("torch.cuda.FloatTensor") t = torch.tensor(25) t ```

feature request

Hi, I have a model JIT-compiled in R torch that loads fine in PyTorch 1.9. However, I can't load it from Java: ``` Exception in thread "main" com.facebook.jni.CppException: open file...

Hi, thanks for the instructive example! I've noticed that the cxx11 ABI libtorch - the one I normally use - does not have a libpytorch_jni.so, so you get the error...

This concerns other windows as well, we should check all (apart from `torch_hann_window())`. ``` > torch_hann_window(2) torch_tensor 0 1 [ CPUFloatType{2} ] > torch_blackman_window(2) Error in (function (window_length, periodic, options)...