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
Currently we store non-normalized predicts in the environment and normalize as we go, but we don't do that for projection, because it leads to a kind of infinite loop -- normalizing something requires drawing on the environment which requires normalizing something.
Here is an example of code that does not compile as a result:
In any case, it seems like it would be best if we normalized the environment once, rather than redoing it each time we draw upon it. I'm just a bit unsure at the moment of what is the best way to do that.
Currently we store non-normalized predicts in the environment and normalize as we go, but we don't do that for projection, because it leads to a kind of infinite loop -- normalizing something requires drawing on the environment which requires normalizing something.
Here is an example of code that does not compile as a result:
This is blocking my attempts to make the fn return as associated type, because a situation much like the above arises when you do that.
The text was updated successfully, but these errors were encountered: