Hi list, long time no see!

The definition of exp in math.l leads me to believe that we're calling this
C function:
https://www.tutorialspoint.com/c_standard_library/c_function_exp.htm

Since we can't do floating numbers in PL and I notice that math.l uses (scl
6) I would hope to get get something like 2718281 back from this call:
(println (exp 1)).

But that is not happening, instead I get 1000001.

Related is my current project which is converting this naive / simple
neural network written in Python to PL:
https://medium.com/technology-invention-and-more/how-to-build-a-simple-neural-network-in-9-lines-of-python-code-cc8f23647ca1

Where I'm currently stuck on the sigmoid function which in turn is making
use of exp.

Reply via email to