Pfa Model Export From Python Scikit-learn
I have read through some of the PFA documentation and understand that PFA model can be imported and used in Production deployments (I have followed along a few examples on GitHub).
Solution 1:
There is no compatibility at the moment for that, you can check it out in their wiki in github https://github.com/opendatagroup/hadrian/wiki
Solution 2:
It is possible to translate some SKLearn models to PFA code using the SKompiler library:
from skompiler import skompile
skompile(model.predict).to('pfa/yaml')
Post a Comment for "Pfa Model Export From Python Scikit-learn"