Poly Haystack Like Terms
import mathy_envs.envs.poly_haystack_like_terms
PolyHaystackLikeTerms¶
PolyHaystackLikeTerms(self, kwargs: Any)
2x + 8 + 13.2y + z^2 + 5x ^^---------------------^^
Applying any rule to one of those nodes is a win. The idea here is that in order to succeed at this task, the model must build a representation that can identify like terms in a large expression tree.
transition_fn¶
PolyHaystackLikeTerms.transition_fn(
self,
env_state: mathy_envs.state.MathyEnvState,
expression: mathy_core.expressions.MathExpression,
features: mathy_envs.state.MathyObservation,
) -> Optional[mathy_envs.time_step.TimeStep]