Skip to main content

Feyn is the high level Python interface to interact with an Abzu QLattice.

Project description

Feyn: AI by Abzu

Feyn is a Python library that pushes machine learning to a new level by taking strong inspiration from quantum physics. A Feyn model is based on the path integral formulation of quantum physics originally proposed by the American physicist Richard P. Feynman.

Feyn models are in many ways similar to Neural Network (or Deep Learning) models, so some of the concepts may be familiar to you already. But at it's core, the Feyn model introduces a new way to work with your data together with a revolutionary way to accumulate and transfer learnings.

But let's start with the basics.

To generate a Feyn-model you need access to a QLattice, short for Quantum Lattice. To learn more about getting access to a QLattice, visit www.abzu.ai.

The other needed component is this Python package (feyn), that runs on your computer and accumulate learnings from your data. These learnings are communicated to your QLattice over the network.

The QLattice is a high-performance quantum simulator that runs on dedicated hardware, hosted on a cluster. It is based on the path integral formulation, which is an approach to quantum mechanics that was originally proposed by the American physicist Richard P. Feynman. For all the curious individuals, the path integral formulation, in very simple words, evaluates the relations between two points by considering and summing all the different possibilities of trajectories between those points.

The QLattice can be divided into 2 parts: Registers and Interactions.

The registers are what we use to interact with the QLattice. They are the input and output interface of a Feyn model. Often they are the features of your data set.

The interactions are the basic computation units of the QLattice. They hold their own state and transform input data into output. It is how learnings are stored and what is used to extract the QGraphs.

The QGraph, short for Quantum Graph, represents all possible combinations connecting the input registers to the output register. That means all possible explanations for the given output with the given inputs, generated by the QLattice.

If you are interested in learning more about what a QLattice is, and how it works, then you should definately take a look at the in-depth documentation here.

Getting started: Feyn in 1 min

Ok, all this sounds good! But in practice how does this work?

Let us walk through a simple classification problem, step by step.

For this quick walk-through we will pick a simple classification problem. The breast cancer dataset which is bundled with sklearn.

This will show you the core concepts in building a graph to execute predictions, that you can deploy to your application.

Connect to your QLattice

from feyn import QLattice

qlattice = QLattice(url = "<URL to your qlattice>", api_token="<Your API token>")

Read in the data

Read in an example data set (here we use the breast cancer data set which is shipped with scikit-learn)

import sklearn.datasets
import pandas as pd

breast_cancer = sklearn.datasets.load_breast_cancer()

# Convert to a pandas dataframe
df = pd.DataFrame(breast_cancer.data,columns=breast_cancer.feature_names)
df['target'] = pd.Series(breast_cancer.target)
df.head()

Train locally and update learnings remotely

Retrieve a QGraph which represents an ordered list of all possible models to solve the problem. The first parameter is a list of all the concepts or features you wanr

# Get a QGraph from the remote QLattice
qgraph = qlattice.get_qgraph(data.columns, target="target")

Next, run for some epochs, where you fit the QGraph to the training data, and update the QLattice with the learnings from the best graph.

The update calls will bias the QLattice from your learnings. Meaning that next time you call qlattice.fit, the new graphs found will fit your problem better.

Notice, that the QLattice lives remotely on the Abzu cluster, but it never sees your local data. The dataset stays on your premise. So, you train locally, and just transmit your learnings to the QLattice. That is the way the QLattice gets better at producing QGraphs that fits your problem.

from sklearn.model_selection import train_test_split

train, test = train_test_split(df, test_size=0.33)

for _ in range(10):
    # Fit the local QGraph with your local data
    qgraph.fit(train)

    # Pich the graph with lowest loss on the training dataset as the best solution.
    best_graph = qgraph[0]

    # Teach the QLattice about this solution, so that it gets biased towards solutions similar to this.
    qlattice.update(best_graph)

Evaluate

Finally, evaluate the results in the test dataset. This is also how you utilize the Graph for predictions in your application.

from feyn import tools

# Use the graph to produce predictions. This graph is similar your model in other framework.
# It is the thing you can save to a file, and deploy to your application or production environment.
predictions = best_graph.predict(X_test)

# This is a classification problem, but we are using a regression model to solve it.
# There are many ways to do this. In this example we will round to nearest integer (the class).
predictions = predictions.round()

tools.plot_confusion_matrix(y_true=test["target"],
                            y_pred=predictions,
                            title="Evaluation Results")

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

feyn-1.3.0-cp38-cp38-win_amd64.whl (79.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.3.0-cp38-cp38-win32.whl (75.0 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.3.0-cp38-cp38-manylinux2014_x86_64.whl (196.3 kB view details)

Uploaded CPython 3.8

feyn-1.3.0-cp38-cp38-manylinux1_x86_64.whl (196.3 kB view details)

Uploaded CPython 3.8

feyn-1.3.0-cp38-cp38-macosx_10_15_x86_64.whl (77.1 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.3.0-cp38-cp38-macosx_10_14_x86_64.whl (77.0 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.3.0-cp37-cp37m-win_amd64.whl (79.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.3.0-cp37-cp37m-win32.whl (74.8 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.3.0-cp37-cp37m-manylinux2014_x86_64.whl (197.6 kB view details)

Uploaded CPython 3.7m

feyn-1.3.0-cp37-cp37m-manylinux1_x86_64.whl (197.6 kB view details)

Uploaded CPython 3.7m

feyn-1.3.0-cp37-cp37m-macosx_10_15_x86_64.whl (76.9 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.3.0-cp37-cp37m-macosx_10_14_x86_64.whl (76.8 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.3.0-cp36-cp36m-win_amd64.whl (84.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.3.0-cp36-cp36m-win32.whl (80.0 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.3.0-cp36-cp36m-manylinux2014_x86_64.whl (190.3 kB view details)

Uploaded CPython 3.6m

feyn-1.3.0-cp36-cp36m-manylinux1_x86_64.whl (190.3 kB view details)

Uploaded CPython 3.6m

feyn-1.3.0-cp36-cp36m-macosx_10_15_x86_64.whl (76.9 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.3.0-cp36-cp36m-macosx_10_14_x86_64.whl (76.8 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

Details for the file feyn-1.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 37ee25a96e8217a599e831edd9390e65a5f8e4726ef084d11649f6a2cbf1338d
MD5 82ced09e6ee20f054cd35f63204d631e
BLAKE2b-256 4819df835b6bff6815571bee5b52746d51039b7cecce85f52352cea95cee293c

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: feyn-1.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 75.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8736338bc17ab664551273761e9bbb326c4aa875437fa0388f470c4e6ebb34d1
MD5 ffc5c27b0154c2593c1ad21a69b563eb
BLAKE2b-256 746caf81a0b77e78fde9b523914078d45eb48746233b4ded30c45150e5c67350

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 196.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1eecd6924ae4c6ed1868fa5161783605122b7c61209fcce600d224e9534487d
MD5 fef49cb8b28fe3466113221b5a869ae1
BLAKE2b-256 ac4ee3fa86dafb2c6253c547276cd027f7d8abaa18bc923849da5e33a7bf3d2e

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 196.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8774bba494c07045a83a6a962381704f1de242c9a5bc18eb2aef9362c2b6f52
MD5 ac02c79bbca608a7b98f2e47286a847c
BLAKE2b-256 70f8d6a1725be47d0682af05dfb1573889d411636e1f8064c607985bd74e27b2

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 77.1 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f02df3923830e5ccbf62cb59b46c73763c3aff5590c27eedbf4826f2de44a84c
MD5 fab0239a80ed8065be85443ca80d7ce7
BLAKE2b-256 df0604a25baaa63e96bb340f3c47abc5e74b44dae7c561e3b9fddd5dafb6374b

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 77.0 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 afe7575111fa095b56e8a85e871f807339a395e4a2ae386fe53a9dd4b8d39ee5
MD5 928b5ed73edc6b3301063ed3a03003af
BLAKE2b-256 f7b188f4e30baaf95b15221edf08cb7aac4fc3545208b4499709b5aa799bb81a

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 79.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7769d52b10b0e1fe238cb6efc665a34e0f3a49b5a5d0f08ee9a5f686881f7395
MD5 d4409a8393e7f8b797c80e33f52dc649
BLAKE2b-256 abc46d822b95671f8ade4ac2acf72747a25c939e3ef737037ab4f86c169dbc7b

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: feyn-1.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 74.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8c681d726c2f2cd540f1e7d62fa69858d73c191e4cee3f0441d4289f902d50bf
MD5 8f54cf7cf6323e42772129c50feac2cb
BLAKE2b-256 7313de8172131f841c900655cfe6bee324e0ec6cd8191cfdbb495720f905096c

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 197.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33ec6ef4ffa54ef86bb8f33d95c0d3f4482f64918306c57b7689ab0a8056860d
MD5 a7e745648b7fe84923c4cb3647f6fab2
BLAKE2b-256 07d1746daaf0cf0e4b9741c38f5a81a7ef5080a0be22e988e4830a90333a4223

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 197.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f1577830f133b98b36736f91ddaedfc20d04fdb753f999b5f1af29a31c08bf68
MD5 43e89b0c9227b9b457bfbe3ca027a92a
BLAKE2b-256 bbf7a860a27817169f2fa9a01b85949f4b0383e8badccecf8744125b49db7ab7

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 76.9 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 79eaa3861cbcc784290b40dbcd8bbb29e7a9cd26bbe9fd1a2cad2e9ad5276103
MD5 59e7c6a19cae5d357d013b40517f376b
BLAKE2b-256 f60ccc7dc567026a6283985100fc57b0290e6d134a6239bafd3b1204936efff9

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 76.8 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6944b78643ef7119d5fe7bd48d3da6846ab7e7b613d04d8a0bc468eafc2b8a76
MD5 66032c00b451fc153cbdc79e9465d2c3
BLAKE2b-256 7223d23c41833822ff4eab47519a551c952f81b2fdda682e7512915a0b75318a

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 84.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e14a4ec8cbd4d2b8b4844cdeaf3fa455a6f98aafd37738836db38b4bd9899866
MD5 02abce67e848a0ba562e681ce1ba3cef
BLAKE2b-256 02586ca66eb7cafa8afadf691df9695a610ccccbaabbb22ab1fa0ff4ba74155c

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: feyn-1.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 80.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 00b4861ccc428bcc9f6f0300c18cf4d7853282c3136fbd2c120453f7e25218dc
MD5 e07dc6736f04a2ca9bb854949d688c68
BLAKE2b-256 4321cc030b64eac282d6bafcb555aaee86c320f1527b7bf190035c207cdab9ad

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 190.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88775a2e9ef3262a0d392233431858cd7cb43d087bb63d3e6aef400c6e6f035b
MD5 daa25c49e7b457b0dac5816d49aa34fc
BLAKE2b-256 4733a120bea984df8c9b5e92ceca9855e438585bf53a38e78bb49b7228d3a707

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 190.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f2fc9d6034c5a716d004d1a51b3775be0c40a7a4731df7d4f00dc03ab25c9cdb
MD5 c1c664f80bc6f8ad9f26c7642257daa3
BLAKE2b-256 76afeeea01b7e08c1b242293d23de1395a59fa5f01dd60ffc2e748bf3954bc72

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 76.9 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7e87ad91d9a59b766a8904485dc28c47b52ac9334c122a15a6dfa23dd1b4bba0
MD5 9cca0eb53ace56c17e380922228ae6cb
BLAKE2b-256 5c7df4ce0fc89161608489b05f51ebf9c45ff5e2b3bf786884bf0d891d99c55c

See more details on using hashes here.

File details

Details for the file feyn-1.3.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: feyn-1.3.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 76.8 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.8

File hashes

Hashes for feyn-1.3.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c8faf23f8ac50e6b5fcc5b311eaced51b597b73305f5d072b35dda77b4100648
MD5 276ff76e381dee2888f03b6d23d9d214
BLAKE2b-256 c1c0ef300b15902dde57e6baf7cad4286df499879ac5104ac5206e56b77bdfca

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