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
The keys in data for the SequenceLearner are not just the points in the domain: they are tuples that also contain some index into the sequence of values.
This does not conform to the API for data which is:
data : dict: X → Y
`function` evaluated at certain points.
where X was previously defined to be the domain of the function being learned.
The text was updated successfully, but these errors were encountered:
I don't think that that really addresses the issue. If data is a public attribute then it should be something that the user can understand and use, especially because right now it is the only way to access the results of an adaptive run. If every learner decides on its own convention for what to keep in data then this makes adaptive harder to use IMO.
The keys in
data
for theSequenceLearner
are not just the points in the domain: they are tuples that also contain some index into the sequence of values.This does not conform to the API for
data
which is:where
X
was previously defined to be the domain of the function being learned.The text was updated successfully, but these errors were encountered: