Question regarding #224 #235
Replies: 2 comments
-
This is because of exp. There is no built-in function for exponential and so it is treated like a string |
Beta Was this translation helpful? Give feedback.
-
@FatimaArshad-DS Yes, the issue is that the For now, you could add a new intermediate parameter (exp_val) alog the lines of this: Lines 75 to 85 in eb318dc and then use that parameter in the final expression for logistic_regression. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
In SimpleExample.ipynb linear regression is implemented. I am trying to extend it to incorporate logistic regression. Do I have to implement it myself or use built-in MDF functions?
For former Ill dig deeper into how it is implemented in MDF since I'm getting an error :D
This is my graph:

And Im getting this error on it.
Error! Could not evaluate expression [1 /(1 + exp((-1) * gain *( input_val + bias) + offset) )] with params [input_val=4.2, gain=1.2, bias=3, offset=3, logistic_regression=0], returned [1 /(1 + exp((-1) * gain *( input_val + bias) + offset) )] which is a <class 'str'>
Beta Was this translation helpful? Give feedback.
All reactions