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
as expected. If the line that converts ds1 to iterable is uncommented so that the ds2 is a map of an IterableDataset, the result is
[{},{}]
I expected the output to be the same as before. It seems that in the second case the removed column is not added back into the output.
The issue seems to be here: the columns are removed after the mapping which is not what we want (or what the documentation says) because we want the columns removed from the transformed example but then added if the map produced them.
This is datasets==3.2.0 and python==3.10
Steps to reproduce the bug
see above
Expected behavior
see above
Environment info
see above
The text was updated successfully, but these errors were encountered:
Describe the bug
The following code
produces
as expected. If the line that converts
ds1
to iterable is uncommented so that theds2
is a map of anIterableDataset
, the result isI expected the output to be the same as before. It seems that in the second case the removed column is not added back into the output.
The issue seems to be here: the columns are removed after the mapping which is not what we want (or what the documentation says) because we want the columns removed from the transformed example but then added if the map produced them.
This is
datasets==3.2.0
andpython==3.10
Steps to reproduce the bug
see above
Expected behavior
see above
Environment info
see above
The text was updated successfully, but these errors were encountered: