Is there a preferred naming convention for Python packages that are based on PyTorch and published on PyPI? For example, let’s say I’ve implemented the foo
algorithm in PyTorch. Since my implementation is not compatible with frameworks other than PyTorch, I’d prefer not to name it foo
, but something like torch_foo
or torchcontrib_foo
.
I don’t think there is one. But doing torch_foo would atleast give the idea that the foo repo is based on pytorch.