hal-314

Results 5 issues of hal-314

Hi again, I notice that there are some methods missing for `IValue` ([javadoc](http://bytedeco.org/javacpp-presets/pytorch/apidocs/org/bytedeco/pytorch/IValue.html)) when comparing to [C++ API](https://pytorch.org/cppdocs/api/structc10_1_1_i_value.html#struct-ivalue). For example, several `toX` methods like `toTuple` are missing, although their equivalent...

enhancement
help wanted

With the recently Pytorch 1.6, adding [SWA](https://pytorch.org/blog/pytorch-1.6-now-includes-stochastic-weight-averaging/) should be easier. Also, it improves the accuracy. ¿Are you going to add it? I know avg_checkpoint.py does something similar. However, having SWA...

help wanted

Hi Currently, webdataset dataset using the default Pytorch Dataloader or WebLoader doesn't work with Pytorch Lightning. You need to set a length attribute (see [lightining example](https://github.com/tmbdev/webdataset-lightning/blob/main/train.py#L133)) . However, when using...

documentation
enhancement

Hi Thank you for doing this great library! # Current behavior Currently, I'm facing a strange behavior. I want to annotate a return type of certain method with a [TypedDict](https://peps.python.org/pep-0589/)...

Hi I was looking at yolov9 implementation and I notice something out of the ordinary. CBLinear layer is implemented with a convolution 1x1 with bias (see L635 of models/common.py). However,...