Replies: 1 comment
Using unified masking in parameter selection now( |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
When tuning parameters (
E,k,tau) for simplex projection forecasting, s-mapping forecasting or intersectional cardinality operation, we face a trade-off between two NaN-handling strategies:Unified masking: Restrict all candidate
(E, k, tau)combinations to the intersection of valid time indices (i.e., positions where all embeddings are fully observed).→ Ensures fair comparison during parameter selection.
→ But the final model (using the "best"
(E, k, tau)) may underutilize data, as its own valid set is typically larger.Per-parameter masking: Evaluate each
(E, k, tau)on its own maximal valid set.→ Reflects each parameter’s true predictive capacity.
→ But comparisons become biased—higher skill might stem from more (or easier) samples, not better dynamics.
Thoughts?
All reactions