Replies: 2 comments 1 reply
-
What I have forgotten to mention: My Python- Operators have a signature of at least three parameters, like ,,age'', ,,gender'', ,,term of premium payments'', .... . Is it possible to use PySR, SymbolicRegression.jl respectively, in order to be able to find formulas for premium calculations. |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can try to use PythonCall.jl to call back into Python. But it will be much slower due to Python’s GIL which blocks parallelism. It is better to reimplement in Julia. Operators are only arity 1 and 2. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a huge library of operators, all of them implemented in Python. Is it possible to use these functions or do I have to reimplement them in Julia?
Beta Was this translation helpful? Give feedback.
All reactions