Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 531 Bytes

vowpalwabbit.rst

File metadata and controls

23 lines (17 loc) · 531 Bytes

vowpalwabbit

The core functionality of the package is available in this root module. A small number of advanced usage classes are only available in :py:obj:`vowpalwabbit.pyvw`.

Example usage

from vowpalwabbit import Workspace, Example
workspace = Workspace(quiet=True)
ex = Example('1 | a b c')
workspace.learn(ex)
workspace.predict(ex)

Module contents

.. automodule:: vowpalwabbit
    :members:
    :undoc-members:
    :show-inheritance: