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
After serialization, ChooseColumnsTransform is deserialized as a SelectColumnsTransform, causing unit tests to fail.
We should also consider changing transforms that use DropColumnsTransform (such as WordHashBag, evaluators etc.) to start using SelectColumnsTransform instead.
The text was updated successfully, but these errors were encountered:
singlis
added a commit
to singlis/machinelearning
that referenced
this issue
Oct 25, 2018
replacing them with SelectColumnsTransform. These changes include:
* Updates to SelectColumnsTransform to respect ordering when keeping
columns. For example, if the input is ABC and CB is selected, the output
will be CB.
* Updates to code that used Choose or Drop columns, replacing with
SelectColumns.
* Updates to baseline output for tests to pass
* Re-enabled the SavePipeline tests
This fixesdotnet#1342
These changes are also related to dotnet#754
…olumnsTransform (#1371)
* Removes ChooseColumnsTransform and DropColumnsTransform classes
replacing them with SelectColumnsTransform. These changes include:
* Updates to SelectColumnsTransform to respect ordering when keeping
columns. For example, if the input is ABC and CB is selected, the output
will be CB.
* Updates to code that used Choose or Drop columns, replacing with
SelectColumns.
* Updates to baseline output for tests to pass
* Re-enabled the SavePipeline tests
This fixes#1342
These changes are also related to #754
ghost
locked as resolved and limited conversation to collaborators
Mar 27, 2022
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
After serialization, ChooseColumnsTransform is deserialized as a SelectColumnsTransform, causing unit tests to fail.
We should also consider changing transforms that use DropColumnsTransform (such as WordHashBag, evaluators etc.) to start using SelectColumnsTransform instead.
The text was updated successfully, but these errors were encountered: