Nathan

Results 4 issues of Nathan

It would be nice to support different data types---e.g. `int`, `float`, `bool`, and maybe a categorical string---for the parameters over which we optimize. I am not sure what the syntax...

It would be great if we could enter dependencies between parameters for optimization. For example, if I have the parameter bounds: ``` python pbounds = {'a': (0, 5), 'b': (0,...

Updated maximization routine to accept constraints using the SLSQP optimizer. Added tests. This resolves issue #94. It looks like the system will still guess outside of the constraints sometimes, but...

Modified `l2_loss` term so that it does not count biases, only weights. Typically we do not want to regularize biases as they are: 1. additive, not multiplicative, and so are...