-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Defining custom gaussian function #86
Comments
Sorry I missed this earlier. This is an interesting question. I don't see a simple solution, but it's definitely doable by implementing custom versions of DSO core abstractions. I think it depends on how you want to obtain values for I think either way would take a bit of coding on top of the current code, but I think it would make for a nice addition. Inner-loop optimization could mimic the Learning the values might be trickier. You could think of the Gaussian as a ternary function, where the arguments are |
A third way would be to use the Slight downside is that the |
Thank you very much for your answer! I will try the third way you mentioned first and see what happens. |
Hello,
I want to add a gaussian function to the
function_set
. I have done so as the other functions already defined (e.g.sigmoid
):However, I would like to have it in the form
with
a
andb
being adjustable parameters. Usingmul
,sub
andconst
in thefunction_set
eventually I would get a gaussian in this form, but there is a way of enforcing it to all gaussians in the expression?Sincerely yours,
Felipe Silva Carvalho
The text was updated successfully, but these errors were encountered: