Replies: 5 comments 6 replies
-
To speed up the computations you can try using other interpolators such as |
Beta Was this translation helpful? Give feedback.
-
Be aware that you are computing the average relative error. So asking it to be below |
Beta Was this translation helpful? Give feedback.
-
I think an error from your code could be, that you are setting n_splits = 10. This means that you are always leaving 10 cases out if you have 100 snapshots, or 50 cases if you have 500 snapshots. So I don't know if you can expect that this particular error metric will decrease with more snapshots. For me it would be more reasonable to always using as many splits as you have snapshots (= loo_error). Or your n_splits parameter should also scale with the number of snapshots you have. E.g. n_splits = 10 with 100 snapshots and n_splits = 50 with 500 snapshots. In this way you ensure that you always leave out groups of 10 cases. Let me know if this helps. |
Beta Was this translation helpful? Give feedback.
-
@mtezzele Thanks for you kindly suggestions! |
Beta Was this translation helpful? Give feedback.
-
Dear @jacktang, also consider a couple of things:
|
Beta Was this translation helpful? Give feedback.
-
Hello there
My model problem is still the 2d mixing tee problem. And I reduced the parameters by fixing inlet1 temperature and inlet2 temperature to 40.0, inlet1 and inlet velocity values are sampled in [0.1, 1.5] uniform distribution.
And I've solved projection errors on training dataset, now the max error around 1e-14. And I created the workflow and hoped to improve rom accuracy automatically. The workflow code list below:
And here are what I found:
Is something wrong in the workflow? Appreciate your time!
Beta Was this translation helpful? Give feedback.
All reactions