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
We should be able to support different kinds of dynamic calculations on the trained model.
At the moment some of these operations are exposed as methods on the model found inside the result object.
These calculations has to be made on the server as it is the only place we have access to python. The solution currently pursued is to send the pickled result from #6 to the server and use it for further calculations
The text was updated successfully, but these errors were encountered:
We should be able to support different kinds of dynamic calculations on the trained model.
At the moment some of these operations are exposed as methods on the model found inside the result object.
One example is the exploration of the model's representation of a single point in https://github.com/novonordisk-research/ProcessOptimizer/blob/develop/examples/7Dimensional_optimization_and_plotting.ipynb where the following code is executed to generate further data
These calculations has to be made on the server as it is the only place we have access to python. The solution currently pursued is to send the pickled result from #6 to the server and use it for further calculations
The text was updated successfully, but these errors were encountered: