You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
layer.forward(input_data={}, optimizer_kwargs={"verbose": True, "track_best_solution": True, "damping": 0.01, ..., etc })
After refactoring this way, I don't think we need to check at the if the keys passed to the dictionary are good or not. In fact, we should probably rename it to optimizer_options={} so it's pretty obvious what this dict is supposed to be doing.
The text was updated successfully, but these errors were encountered:
From discussion:
layer.forward(input_data={}, optimizer_kwargs={"verbose": True, "track_best_solution": True, "damping": 0.01, ..., etc })
After refactoring this way, I don't think we need to check at the if the keys passed to the dictionary are good or not. In fact, we should probably rename it to optimizer_options={} so it's pretty obvious what this dict is supposed to be doing.
The text was updated successfully, but these errors were encountered: