Replies: 1 comment
-
I've been doing some trouble-shooting with the model and have found some interesting things and I have a few new things I want to try. Note that all of the plots below are for the training time period. I'm plotting this b/c I just wanted to see if the model is at least fitting that. BaselineHere are the baseline predictions for comparison. As a reminder, these are predictions from the model that is just predicting DO mean/min/max 1 - scaled vs. unscaledOne of the major issues with the LSTM-metab results that we first saw was that the y-data (so the metabolism and the DO data) were all being scaled and centered. Because of this, the equations to get from metabolism back to DO, were, of course not work. predictions with scaled data:predictions with unscaled data:Takeaways:
Trying with just metabI wanted to test the "we are just asking the model to do to much relative to the flexibility we are providing" hypothesis. So I ran two different versions of the LSTM-metab. In #88, I set the loss weights for the DO outputs to 0. That way the model was only trying to minimize error in the metabolism predictions. In #87, I did the opposite: I set the metabolism errors to zero. In effect, I asked the model to only try to reduce error in the DO predictions and not to worry at all about the metabolism errors. Here are those results: just solving for metabolismjust solving for DO (but going through our metabolism model)Takeaways:
|
Beta Was this translation helpful? Give feedback.
-
Starting this so we have a place post updates about the LSTM-metab performance and have discussion about those.
Beta Was this translation helpful? Give feedback.
All reactions