I have a function that takes a large set of inputs. I'd prefer to think of some of those inputs as constant parameters.Occasionally I will want to change them though and don't want to do a recompile each time I make this change. Is there a standard solution to this in Theano that doesn't involve inputing the parameters to the function each time I run it?
--
---
You received this message because you are subscribed to the Google Groups "theano-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to theano-dev+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Partial was my planned solution. I hadn't thought of shared variables. They actually map really cleanly to another incarnation of the problem. Thanks for the idea!