Python 8.11 to 9 migration#
You can do nothing and everything should still work when migrating to VW 9. But if you want to move to the new way to avoid deprecation warnings and future breaks here’s a rundown.
Imports#
Modules are now direcly accessible from the root module. In the past from vowpalwabbit import ... was needed, but now import vowpalwabbit and accessing with . will work.
pyvw#
The old pyvw types are now available under the root module.
Instead of:
from vowpalwabbit import pyvw
Use:
import vowpalwabbit
And use the corresponding types exposed by vowpalwabbit instead of vowpalwabbit.pyvw.
Exception
vowpalwabbit.pyvw.SearchTask is only available under vowpalwabbit.pyvw due to its advanced nature and less usage.
DFtoVW#
Replace any reference to the old module name DFtoVW with vowpalwabbit.dftovw.
sklearn_vw#
Replace any reference to the old module name sklearn_vw with vowpalwabbit.sklearn.
Class names#
Replace
vowpalwabbit.pyvw.vwwithvowpalwabbit.WorkspaceReplace
vowpalwabbit.pyvw.examplewithvowpalwabbit.ExampleReplace
vowpalwabbit.pyvw.example_namespacewithvowpalwabbit.ExampleNamespaceReplace
vowpalwabbit.pyvw.namespace_idwithvowpalwabbit.NamespaceIdReplace
vowpalwabbit.pyvw.abstract_labelwithvowpalwabbit.AbstractLabelReplace
vowpalwabbit.pyvw.simple_labelwithvowpalwabbit.SimpleLabelReplace
vowpalwabbit.pyvw.multiclass_labelwithvowpalwabbit.MulticlassLabelReplace
vowpalwabbit.pyvw.multiclass_probabilities_labelwithvowpalwabbit.MulticlassProbabilitiesLabelReplace
vowpalwabbit.pyvw.cost_sensitive_labelwithvowpalwabbit.CostSensitiveLabelReplace
vowpalwabbit.pyvw.cbandits_labelwithvowpalwabbit.CBLabel
get_prediction#
Instead of calling the free function vowpalwabbit.pyvw.get_prediction() call vowpalwabbit.Example.get_prediction() on an vowpalwabbit.Example instance.
Label types and prediction types#
Instead of using the prediction type integer constants such as
vowpalwabbit.pyvw.pylibvw.vw.pSCALARuse the corresponding value invowpalwabbit.PredictionTypeInstead of using the label type integer constants such as
vowpalwabbit.pyvw.pylibvw.vw.lSimpleuse the corresponding value invowpalwabbit.LabelTypeInstead of
vowpalwabbit.pyvw.pylibvw.vw.lBinaryusevowpalwabbit.LabelType.SCALARInstead of
vowpalwabbit.pyvw.pylibvw.vw.lDefaultuse a value ofNonevowpalwabbit.pyvw.pylibvw.vw.lMaxdid not have a corresponding type
Getting a label from an Example#
If using
vowpalwabbit.Example.get_label(), you should change the parameter from a class type to avowpalwabbit.LabelType.If calling
vowpalwabbit.AbstractLabel.from_example(). This has changed from a method on an existing instance to a static factory function which accepts anvowpalwabbit.Exampleand returns an instance of the correspodning label type. Usingvowpalwabbit.Example.get_label()is preferred.
ExampleNamespace.push_features#
The first argument of vowpalwabbit.ExampleNamespace.push_features() was removed as it was not needed and unused. Using two arguments is deprecated, to fix the callsites remove the first argument.