Codercise V.1.4 - Training a model


I don’t understand what problem.
Have someone also encounter the same problem?

Hi @feynmannlu,

I can see several things happening here. On one hand you’re not returning the optimized parameters, but instead the result after just one step. On the other hand, you’re telling your optimizer that it should train both the observable and the parameters. If we only want to train the parameters you may need to create an additional function within the optimizer function such that the only argument to that new function are the parameters.

I hope this helps you!

This may be a bit difficult if you aren’t familiar with lambda, so I’ll give you a hint.

params = opt.step(lambda p: cost_function(observable,p), params)