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
When setting up datasets with nominal values and subsequently using instance-to-map or instance-to-vector to inspect individual instances in the dataset, the termination condition in data/instance-value-at is not guaranteed to be met, due to the comparison between a float and an int here:
Here val is a float, while the vals of the map returned by dataset-values-at are ints. Comparing 0 to 0.0 in the terminal condition results in false leading to an infinite loop. I had this issue even with the example mentioned in the readme.
The text was updated successfully, but these errors were encountered:
When setting up datasets with nominal values and subsequently using instance-to-map or instance-to-vector to inspect individual instances in the dataset, the termination condition in data/instance-value-at is not guaranteed to be met, due to the comparison between a float and an int here:
Here val is a float, while the vals of the map returned by dataset-values-at are ints. Comparing 0 to 0.0 in the terminal condition results in false leading to an infinite loop. I had this issue even with the example mentioned in the readme.
The text was updated successfully, but these errors were encountered: