Divyanshu Kumar

Results 71 comments of Divyanshu Kumar

@haripriya9647 Please write a proper PR description.

LGTM!! @ramesht007

@haripriya9647 Please write a proper description of the PR

@haripriya9647 Content-wise, it's looking good. But it needs a few modifications like: - In scala, we write the inline comments before the functions, method, or class. So, please follow it....

@bashirk Content-wise, it's looking good. But it needs a few modifications like: - In scala, we write the inline comments before the functions, method, or class. So, please follow it....

@i-vishi , Can I create a Pull request directly or do I need to first create a new issue for this?

@StellaAthena If no one is working on it. Then I would love to work on it.

@ankitgoyal-ow Same for me. Did you find any way around on macOS?

If no one is working on this, then I would like to work on this. @jcwchen could you please give me some pointers to get started with it?

Implementation of AveragePool across PyTorch, TensorFlow, and Onnx. PyTorch ---------- ```python import torch avg_pool = torch.nn.AvgPool2d((3, 3), stride=(3,4),ceil_mode=True,count_include_pad=False) input = torch.ones((1,1,8,8)) output = avg_pool(input) print(output) >>> tensor([[[[1., 1.], [1., 1.],...