A multi-language library for translating commands between PyTorch, TensorFlow, and TensorFlow.js
Project description
Threepio Python Client
Threepio is a multi-language library for translating commands between PyTorch, TensorFlow, and TensorFlow.js This section of the code-base is for the Python Client.
Installation
Use the package manager pip to install threepio.
pip install openmined.threepio
Usage
import tensorflow as tf
from pythreepio import Threepio, Command
# Create a threepio translating from pytorch -> tensorflow python
threepio = Threepio("torch", "tf", tf)
# Create your command to translate
args = [
tf.constant([[1, 0], [0, 1]]),
tf.constant([[0, 1], [1, 0]])
]
kwargs = {}
cmd = Command("add", args, kwargs)
# Translate the command
translated_cmd = threepio.translate(cmd, lookup_command=True)
...
# When you're ready, execute the translation
translated_cmd.execute_routine() # -> [[1, 1], [1, 1]]
Command Support
Support for commands is currently limited. Officially supported commands are listed in our tests.
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
openmined.threepio-0.2.0.tar.gz
(73.5 kB
view details)
File details
Details for the file openmined.threepio-0.2.0.tar.gz
.
File metadata
- Download URL: openmined.threepio-0.2.0.tar.gz
- Upload date:
- Size: 73.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3071627665b1b22ca3faa3f036e498d037c1879b61f8055a798cad4e23d4ee6d |
|
MD5 | 528d5aae516aa6f7904297fe002ac495 |
|
BLAKE2b-256 | 0a38df6367693c7f3808f076cd8c2647c434a04adda2bbb2435dadefe7258fd4 |