Athos Petri Damiani

Results 17 issues of Athos Petri Damiani

I would like to load just an interval of a given .wav file aiming to avoid bringing the full audio to memory. Is it possible? When I call .load(filepath) it...

``` r library(torch) blank_canvas [ CPUFloatType{2,3} ] blank_canvas[3:4, col_idx] # torch_tensor #> 0 0 0 #> 0 0 0 #> [ CPUFloatType{2,3} ] blank_canvas[3:4, 1:3] # torch_tensor #> 0 0...

bug

Hello, In heatmaps we sum up values (passed to intensity argument) over a neibourhood. I would like to be able to aggregate these values with a summary function other than...

Hey! I started this PR for catboost.Model support. If it is something that worth the effort, I would like help especially regarding the pkg design. **I certainly think it's worth...

Do you guys have any plan to make it work with wavesurfer 3.0.0? Congrats for your work on this annotator. A great job! I was trying to make the spectrogram...

in pytorch, it is allowed to do `tensor.to(t)` instead of `tensor.to(t.dtype)` ``` >>> a = torch.tensor(1, dtype = torch.int) >>> b = torch.tensor(1, dtype = torch.float) >>> b.to(a) tensor(1, dtype=torch.int32)...

Hello @topepo Imagine if `foo xgb_recipe recipe(formula = mpg ~ ., data = mtcars) %>% #> step_zv(all_predictors()) ``` Created on 2020-06-18 by the [reprex package](https://reprex.tidyverse.org) (v0.3.0) It would suit perfectly...

feature

I don't know if I'm using this function as expected, but I think zero height is not what it suposed to return in this situation. ``` r library(torch) library(torchvision) tf...

PR for boxes.py. Used for boxing objects in images. - [[DOCs](https://pytorch.org/vision/stable/_modules/torchvision/ops/boxes.html#nms)] - [[github](https://github.com/pytorch/vision/blob/master/torchvision/ops/boxes.py)] As I mentioned in this issue mlverse/torchvision/issues/39, the NMS operator is the missing part to the boxes...

Hello! I would like to humbly make a request regarding NMS operator. I am currently working on porting [this face detection and recognition implementation](https://github.com/timesler/facenet-pytorch) from py to R. And to...