fastinference
fastinference copied to clipboard
The onnx-cpu extra is installing fastai2
I haven't been able to see what's going on.
If I install onnxruntime
on one side and fastinference
on the other, everything works fine*. But if I install fastinference[onnx-cpu]
it installs the old fastai2
package, and it breaks.
- I'm getting errors in the
to_onnx
patched function, but I'm still looking for what's going on to report better. But when I say "fine" I mean the theSoftDependencies
check is not raising an error and I can import bothfrom fastinference.fastinference import *
andfrom fastinference.onnx import *
@polyrand try installing via:
pip install fastinference[onnxcpu]
Instead.