Skip to main content

A package for remote model training and prediction

Project description

Veox Client Veox Client is a Python package that provides a client for interacting with the Veox remote machine learning service. It offers an sklearn-like API for easy integration into your existing machine learning workflows. Installation You can install Veox Client using pip: Copypip install veox Usage Here's a basic example of how to use Veox Client: pythonCopyimport veox as v import numpy as np from sklearn.datasets import make_classification from sklearn.model_selection import train_test_split

Generate a sample dataset

X, y = make_classification(n_samples=1000, n_features=20, n_classes=2, random_state=42) X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

Initialize the remote model

model = v.init(key="YOUR_API_KEY", server_url="http://your-server-url:5000")

Train the model

model.fit(X_train, y_train)

Make predictions

y_pred = model.predict(X_test)

Get prediction probabilities

y_prob = model.predict_proba(X_test)

Calculate accuracy

accuracy = np.mean(y_pred == y_test) print(f"Accuracy: {accuracy:.4f}") Note This package requires access to a running Veox server. Contact your system administrator or the Veox team for server access and API keys. License This project is licensed under the MIT License - see the LICENSE file for details.

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

veox-0.1.5.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

veox-0.1.5-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file veox-0.1.5.tar.gz.

File metadata

  • Download URL: veox-0.1.5.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for veox-0.1.5.tar.gz
Algorithm Hash digest
SHA256 5cfbdfdd5020a12f7a5d0fe0beb37133168e004e9a6d40311a7e6c47498a654b
MD5 25bb8969305db0f67a48ffa64a1a8206
BLAKE2b-256 2c30720596c570fc50296973e72d18f9e7a7577feeda90a5b30d305a408e551b

See more details on using hashes here.

File details

Details for the file veox-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: veox-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for veox-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f94960791f9895430b139fb505515624b7fcf562e5078e96902a174ebea9a186
MD5 7d2f1536fe51f382520071bc70295c01
BLAKE2b-256 e10f2c38bbb50bab13aa7aace0eb6ae2f8b70c1f2e9704b4221d8991bc0bcf86

See more details on using hashes here.

Supported by

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