Skip to main content

🤝 Trade any tensors over the network

Project description

TensorShare

🤝 Trade any tensors over the network


TensorShare is a powerful tool enabling ⚡ lightning-fast tensor sharing across networks.

This project leverages the best open-source tools to provide a simple and easy-to-use interface for sharing tensors:

  • safetensors for secure tensor serialization and deserialization.
  • pydantic for data validation and settings management.
  • fastapi for building APIs (and because it's too good to avoid it).

This project is heavily in development and is not ready for production use. Feel free to contribute to the project by opening issues and pull requests.

Usage

Example of tensors serialization with torch:

import torch
from tensorshare import TensorShare

tensors = {
    "embeddings": torch.zeros((2, 2)),
    "labels": torch.zeros((2, 2)),
}
ts = TensorShare.from_dict(tensors, backend="torch")
print(ts)
# tensors=b'gAAAAAAAAAB7ImVtYmVkZGluZ3MiOnsiZHR5cGUiO...' size=168

You can now freely send the tensors over the network via any means (e.g. HTTP, gRPC, ...).

On the other side, when you receive the tensors, you can deserialize them in any supported backend:

from tensorshare import Backend

np_tensors = ts.to_tensors(backend=Backend.NUMPY)
print(np_tensors)
# {
# 	'embeddings': array([[0., 0.], [0., 0.]], dtype=float32),
# 	'labels': array([[0., 0.], [0., 0.]], dtype=float32)
# }

For more examples and details, please refer to the Usage section.

Roadmap

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

tensorshare-0.1.1.tar.gz (25.2 kB view details)

Uploaded Source

Built Distribution

tensorshare-0.1.1-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file tensorshare-0.1.1.tar.gz.

File metadata

  • Download URL: tensorshare-0.1.1.tar.gz
  • Upload date:
  • Size: 25.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.24.1

File hashes

Hashes for tensorshare-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0b48c7ac81dbccfc0fc05a312e17de3abeb1302cbbad73b2afa7913c57d001bb
MD5 9a8d850f5ea458a8c71f9605c3b0183e
BLAKE2b-256 59ae09bf8b042e2633d3e63a09475b73159b21e7f58466d93fc29a6e7903449c

See more details on using hashes here.

File details

Details for the file tensorshare-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for tensorshare-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 74d14442b3f681068620187503267bf95f301cd281bfc44967d1c1d3c31addb3
MD5 dc804481c47d707bd0ac7a280fd5987b
BLAKE2b-256 bd9272878af643353442a2cb3368b2310988ce60dd64b0eababaf54064296de8

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