Skip to main content

Graviti TensorBay Python SDK

Project description

TensorBay Python SDK

Pre-commit Unit Test Documentation Status Downloads Coverage Status GitHub Slack PyPI PyPI - Python Version


IMPORTANT: TensorBay system underwent a huge refactoring, which broke the downward compatibility of OpenAPI and SDK. As a result, the SDK under version v1.6.0 does not work anymore.
Please update tensorbay SDK to v1.6.0 or a higher version.


TensorBay Python SDK is a python library to access TensorBay and manage your datasets.
It provides:

  • A pythonic way to access your TensorBay resources by TensorBay OpenAPI.
  • An easy-to-use CLI tool gas (Graviti AI service) to communicate with TensorBay.
  • A consistent dataset format to read and write your datasets.

Installation

pip3 install tensorbay

Documentation

More information can be found on the documentation site

Usage

An AccessKey is needed to communicate with TensorBay. Please visit this page to get an AccessKey first.

Authorize a client object

from tensorbay import GAS
gas = GAS("<YOUR_ACCESSKEY>")

Create a Dataset

gas.create_dataset("<DATASET_NAME>")

List Dataset names

dataset_names = gas.list_dataset_names()

Upload images to the Dataset

from tensorbay.dataset import Data, Dataset

# Organize the local dataset by the "Dataset" class before uploading.
dataset = Dataset("<DATASET_NAME>")

# TensorBay uses "segment" to separate different parts in a dataset.
segment = dataset.create_segment("<SEGMENT_NAME>")

segment.append(Data("0000001.jpg"))
segment.append(Data("0000002.jpg"))

dataset_client = gas.upload_dataset(dataset, jobs=8)

# TensorBay provides dataset version control feature, commit the uploaded data before using it.
dataset_client.commit("Initial commit")

Read images from the Dataset

from PIL import Image

dataset = Dataset("<DATASET_NAME>", gas)
segment = dataset[0]

for data in segment:
    with data.open() as fp:
        image = Image.open(fp)
        width, height = image.size
        image.show()

Delete the Dataset

gas.delete_dataset("<DATASET_NAME>")

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

tensorbay-1.24.2.tar.gz (254.5 kB view details)

Uploaded Source

Built Distribution

tensorbay-1.24.2-py3-none-any.whl (376.9 kB view details)

Uploaded Python 3

File details

Details for the file tensorbay-1.24.2.tar.gz.

File metadata

  • Download URL: tensorbay-1.24.2.tar.gz
  • Upload date:
  • Size: 254.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tensorbay-1.24.2.tar.gz
Algorithm Hash digest
SHA256 d186890f6a796cfdadc9ff4a13bb3fd31f6b928dbf346f61d4e0530052109dcb
MD5 a79ee45a35647c9985920017389b8828
BLAKE2b-256 65571891408f546f5434efb92df4b795569a28a2f52694a10c31b1784b68a965

See more details on using hashes here.

File details

Details for the file tensorbay-1.24.2-py3-none-any.whl.

File metadata

  • Download URL: tensorbay-1.24.2-py3-none-any.whl
  • Upload date:
  • Size: 376.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tensorbay-1.24.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c9db800234862a951e81e7609af11995bc9c5aee01cc754ecace9531a0b8a775
MD5 1cdad1709b65822ab540001721f2e608
BLAKE2b-256 7ccf03be15e1751422f846bb02cd4e58c198e6665fcbe4b3cd70bcf75b778b73

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