Skip to main content

Vowpal Wabbit Python package

Project description

ImageLink

Vowpal Wabbit is a fast machine learning library for online learning, and this is the python wrapper for the project.

Installing this package builds Vowpal Wabbit locally for explicit use within python, it will not create the command-line version of the tool (or affect any previously existing command-line installations). To install the command-line version see the main project page: https://github.com/VowpalWabbit/vowpal_wabbit

The version of the PyPI vowpalwabbit package corresponds to the tagged version of the code in the github repo that will be used during building and installation. If you need to make local changes to the code and rebuild the python binding be sure to pip uninstall vowpalwabbit then rebuild using the local repo installation instructions below.

Installation

See the installation instructions

Usage

You can use the python wrapper directly like this:

>>> import vowpalwabbit
>>> vw = vowpalwabbit.Workspace(quiet=True)
>>> ex = vw.example('1 | a b c')
>>> vw.learn(ex)
>>> vw.predict(ex)

Or you can use the included scikit-learn interface like this:

>>> import numpy as np
>>> from sklearn import datasets
>>> from sklearn.model_selection import train_test_split
>>> from vowpalwabbit.sklearn import VWClassifier
>>>
>>> # generate some data
>>> X, y = datasets.make_hastie_10_2(n_samples=10000, random_state=1)
>>> X = X.astype(np.float32)
>>>
>>> # split train and test set
>>> X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=256)
>>>
>>> # build model
>>> model = VWClassifier()
>>> model.fit(X_train, y_train)
>>>
>>> # predict model
>>> y_pred = model.predict(X_test)
>>>
>>> # evaluate model
>>> model.score(X_train, y_train)
>>> model.score(X_test, y_test)

Troubleshooting

See the troubleshooting guide

Development

Contributions are welcome for improving the python wrapper to Vowpal Wabbit.

  1. Check for open issues or create one to discuss a feature idea or bug.

  2. Fork the repo on Github and make changes to the master branch (or a new branch off of master).

  3. Write a test in the python/tests folder showing the bug was fixed or feature works (recommend using pytest).

  4. Make sure package installs and tests pass under all supported environments (this calls tox automatically).

  5. Send the pull request.

Tests can be run using setup.py:

$ python setup.py test

Directory Structure:

  • python : this is where the c++ extension lives

  • python/vowpalwabbit : this is then main directory for python wrapper code and utilities

  • python/examples : example python code and jupyter notebooks to demonstrate functionality

  • python/tests : contains all tests for python code

Note: neither examples nor tests directories are included in the distributed package, they are only for development purposes.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vowpalwabbit-9.0.1.tar.gz (4.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

vowpalwabbit-9.0.1-cp310-cp310-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10Windows x86-64

vowpalwabbit-9.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

vowpalwabbit-9.0.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

vowpalwabbit-9.0.1-cp39-cp39-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.9Windows x86-64

vowpalwabbit-9.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

vowpalwabbit-9.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

vowpalwabbit-9.0.1-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

vowpalwabbit-9.0.1-cp39-cp39-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

vowpalwabbit-9.0.1-cp38-cp38-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8Windows x86-64

vowpalwabbit-9.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

vowpalwabbit-9.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

vowpalwabbit-9.0.1-cp38-cp38-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

vowpalwabbit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

vowpalwabbit-9.0.1-cp37-cp37m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

vowpalwabbit-9.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

vowpalwabbit-9.0.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

vowpalwabbit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

vowpalwabbit-9.0.1-cp36-cp36m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

vowpalwabbit-9.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

vowpalwabbit-9.0.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

vowpalwabbit-9.0.1-cp36-cp36m-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file vowpalwabbit-9.0.1.tar.gz.

File metadata

  • Download URL: vowpalwabbit-9.0.1.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1.tar.gz
Algorithm Hash digest
SHA256 ac35203a3ae863c4bbdfeb3e316c8197ceaefbc5c21f83bc28c0a8f73525a80b
MD5 71a7f95f6b97519179928c619c4a51a1
BLAKE2b-256 1fb36aadc04cc192b5e55441fcba6bc824b356cab644ce6be43435f616f01ec7

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad33cceb9870f9578cc5774133bf74ee5c8ef38b28cbb88545fa65caf458860f
MD5 f73edb8c426953d28146189b724a1128
BLAKE2b-256 f531388a859563940f08ab5abb7de99ad8a9f28461705c6a23f330c4569bddf0

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb281a4b9b31e73d4f416eace63a77017439a92c8d33d7209121d1617bf6b506
MD5 76b906c65797efe777610fefb4c7f4a6
BLAKE2b-256 82c93e72906022ad70cb7f4dd657c0c6a0c8b9aa3f45f7094d9e2c7dba1c290e

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ae2a5e370036f2c0b2ce603a0cf6ff0d9a10492c99c72a136e22b11981494581
MD5 c2e9e62d4d3934998696df0f63025baf
BLAKE2b-256 61c723c6fd6f1d2ac7aa860f75f755d00f3c48953a8cf9a572be975f8aa7da39

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 91595ca6d2210b8897c439afa6dee0389825a61f09927a038833cc67b5cb5abd
MD5 4b6a11b37528910abf1b012b10974ee0
BLAKE2b-256 0b48d39e700127082285a031c03e676293c35563c82e4a9b412bfdf94dea10e0

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07cea27b0b90f00955a7a490a84fca5164d2a3e9979c90aae4dc2c3cfd41f3b4
MD5 a2aeeacccedfec301ddcbf17aa27b299
BLAKE2b-256 9e7fe57090de9d1be56e291bcf6c1e6fdc6cb10650fca07b349bbe15d1ebf0fc

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0b2b381dc0379ea0fe09f94a59fc03b210524c241c0a89749c6144f8f1d92619
MD5 c4bbfd43ef165e6098f660720e906cc7
BLAKE2b-256 5b474cf89649716dbadd983167a8b3d5ff3809e6494cc1aef52ef7c961da87b2

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9a50d95e9bb17ec0da09c5e3717c17cd8d51d81fd91a0cf321a5987d8701391
MD5 69617bd22d79adcfc5ee81a933cae5b6
BLAKE2b-256 04e88a3942056972bb687c074b232397c4aa5779922e5293b4af7550f34f8f9a

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9850cf30b14142a68bd99684dad95d7d8f65f8f7fac5972930d33fd5b98b3ea
MD5 ff22cee9d0bba42a428d94fdfeff1099
BLAKE2b-256 f3190d57e8b8c061ebfd1a18fb9f9ccb9464189de0dff0044a5b19f8038e4d6b

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 534084a14e9fee9acad686f97ed40239e29f5b4126335b2e33fc9d185783d1a5
MD5 1fc704f52894d6c5c01d0f5f79bff23e
BLAKE2b-256 6e7b490b42019b42c10806ec8f7cb7384df14fabf3e472208bfebeccbf59c4be

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf76095dae957855da7bdf6d55cb1473b2279096df905e771ae511f6bb09b9bb
MD5 2a8494890e8832c84957054cb9a5879b
BLAKE2b-256 7f69751000ab37635f9faf208dbf1f1c34fd7afc199622ddc42ddc99d6f909c4

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8d9c6e1a6c8227a9c9cd06b079c49ce905e4ceca6c7a823acc698dcc18f1c474
MD5 f7489f19922a72c9d643027680185a09
BLAKE2b-256 39f9f34cb355c59a860f9cf3c8b49f6a6184e1743a182bdbd99fcf892b5d442b

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f2c60af9b4c35465cf4eb383c6b914fefdc70cfc9e70a9ffd652c240a491bbb
MD5 4e153481ab696b058e7663a4287e6495
BLAKE2b-256 e4ea4e6f4b994af4f69553fb24fd5405f8ce92da0f50a5850b8624e7e370d9ab

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 103a1f2985e3a682680ba2e0bcef20f6071b683cd021994297b292f76672de2a
MD5 a51563a3a43f21ccbd0d24c725da22bf
BLAKE2b-256 b86ab9efdd3593c3bf27f4bee9f39b279a8846911132546f4a812a1619389302

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6a1990c69afef15d1fd20d5bc9e8e2406395ef0da1081b140cb8889115910328
MD5 82e8091ca99de189f946064d5d6d27cd
BLAKE2b-256 77cd5722078adeff80741377971a90e4ef1e0ab12aa1bfc301def383b5d4d39f

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aef37acf9993f343b099f329bee6312af9ef5784937af5553cb9c3b177a3e683
MD5 053f10684a7cd9d8a65cee0476ef2678
BLAKE2b-256 ac7c50a9f8064f5d4f02f4e46b09768d26a814ba11d7b8457a9fa31c80a5f58d

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 230f48476e8e3d29380f9235cf7613bf3edb2ee078c72468cfd288ef2a7dae15
MD5 75e3cf1f9fba263bb58339666aa30815
BLAKE2b-256 4a6b1bda51735a6c169bf174c07f14ced1a0c1d6dd111567d37c24fb65dd1811

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ae99069e550d7d274e7a63995f47ddb301ae76b9a12a8f4c2e5ee0fed65a553
MD5 9f543ca2c4245d7eb0d1181ac7961179
BLAKE2b-256 18beec4cb3b64f0754514853f6fec3bf127cf1a47ad43776a4585ca283d28d86

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7e57a225c21a3cf35d43950e42e311eec3214767b468ceac98be8f51ae23e04b
MD5 0ea029ddb8e944aa9b38d3e5d7b18282
BLAKE2b-256 1a738b351a90cc2fc71daaece1384bf70a6a18d85e75713d084b301823d39ab1

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6722c9d81e3dc0fe2e1f22e84ad42be58daa838c7bad382919e167416899faa8
MD5 7b1a174aad5ea0a2825851d607167463
BLAKE2b-256 35a4c6d3bc6cb8fa399b65971757cb54420144dd32ffc285a29fc6ae2c89dc91

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for vowpalwabbit-9.0.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d7a6947783aae6f71bf9f8f73dfc1cc84832aebfcdf5930e4bb1d670178af599
MD5 50f0bcb7a234789ccf2a87aa8ee66bbb
BLAKE2b-256 a520b9d33c67b9072c8d693f63782057cd1dba304ea6809d328e4bc2d972bbf9

See more details on using hashes here.

File details

Details for the file vowpalwabbit-9.0.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: vowpalwabbit-9.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for vowpalwabbit-9.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9941125369e8b887e99db7cc3c6182e9ff0fd558604199ec7dee1da3f9fe127
MD5 f595af698a15bcdd3739f648f8b51627
BLAKE2b-256 a3f0c9f4071ab864302b1cf37ff91b50cfe96f6395bed35a81863295fc5f0e49

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page