Open nfnt opened 2 months ago
cc @baijumeswani
This issue has been automatically marked as stale due to inactivity and will be closed in 30 days if no further activity occurs. If further support is needed, please provide an update and/or more details.
Is there anything I can help with to get this resolved? I can see that there were some CI failures on #22072, but I'm not sure if they are related to the proposed changes.
Describe the issue
In the onnxruntime training API for Python, some packages in
onnxruntime.training.optim
importtorch
. Due to how Python package imports work, this results in a dependency of all packages inonnxruntime.training
ontorch
.torch
package sizes can be rather large and this size is problematic in some environments. It would be great to not require this package if using parts of onnxruntime that don't need it (e.g.onnxblock
).To reproduce
In a fresh virtual env run:
This will fail with
Urgency
Not too urgent, I have a workaround in place that's patching the API in
onnxruntime.training.__init__.py
to only add theoptim
package iftorch
is available.ONNX Runtime Installation
Released Package
ONNX Runtime Version or Commit ID
1.19.2
PyTorch Version
not using Pytorch
Execution Provider
Default CPU
Execution Provider Library Version
No response