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 have similarities with other machine learning models such as random forest models or neural networks, 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 classifier QGraph from the remote QLattice
qgraph = qlattice.get_classifier(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.4.2-cp38-cp38-win_amd64.whl (148.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.4.2-cp38-cp38-win32.whl (144.2 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.4.2-cp38-cp38-manylinux2014_x86_64.whl (267.6 kB view details)

Uploaded CPython 3.8

feyn-1.4.2-cp38-cp38-manylinux1_x86_64.whl (267.6 kB view details)

Uploaded CPython 3.8

feyn-1.4.2-cp38-cp38-macosx_10_15_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.4.2-cp38-cp38-macosx_10_14_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.4.2-cp37-cp37m-win_amd64.whl (148.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.4.2-cp37-cp37m-win32.whl (144.0 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.4.2-cp37-cp37m-manylinux2014_x86_64.whl (267.5 kB view details)

Uploaded CPython 3.7m

feyn-1.4.2-cp37-cp37m-manylinux1_x86_64.whl (267.5 kB view details)

Uploaded CPython 3.7m

feyn-1.4.2-cp37-cp37m-macosx_10_15_x86_64.whl (145.1 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.4.2-cp37-cp37m-macosx_10_14_x86_64.whl (145.0 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.4.2-cp36-cp36m-win_amd64.whl (153.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.4.2-cp36-cp36m-win32.whl (149.2 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.4.2-cp36-cp36m-manylinux2014_x86_64.whl (260.2 kB view details)

Uploaded CPython 3.6m

feyn-1.4.2-cp36-cp36m-manylinux1_x86_64.whl (260.2 kB view details)

Uploaded CPython 3.6m

feyn-1.4.2-cp36-cp36m-macosx_10_15_x86_64.whl (145.1 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.4.2-cp36-cp36m-macosx_10_14_x86_64.whl (145.0 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6fff9b0f31b1f4ab171b4f86b846c2b7ca046b03a9890c5ab3a33ac61e3c93bb
MD5 f55333088897b0d177b44e59a863f33d
BLAKE2b-256 c879a4961cc0920b337199108712042ab8422507522a9b0a038dd09dce698f88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 67ef0adcfcab59e21830710e9778feb5f45f3cd58428d0883ead02c62b36d4e0
MD5 b1f02719dc1f49fc0911c7bd4ff4281c
BLAKE2b-256 baab8b553d3491c08b9c9509bf694030e428c0fecd6c8dcb038c6bde186b5620

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a25f98c56793a4f5425d2c4d1132401076809fd5c212194604481b99c1c603c1
MD5 81c603873d77ae7f1af4bfb2a4559c16
BLAKE2b-256 4465db08edb6f6e1510b7b658c1b3a7ad8d5b36fc62b25e7c967dfe3749f2554

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d5534edb2fee110edd89ad7bcf0432ea850eb2f00ca79c2f8f45e5fd2d399899
MD5 7425586e7d69ff77c6a68a61eeac245d
BLAKE2b-256 fc6c61cceede7c3c70988753ad7931f750fb4dc2c00bfb0964c0668ec2ebb54b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0fbf4cd2c1758881594928f90e73abdf1b31bb540ed45099090009dc6764bc18
MD5 eb4e41db7f98b41f99683bd0817a19c6
BLAKE2b-256 da7852dc120fe5c4ed294ea82f77f97d03eb404e11012c215959b9531ccc18a4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8bce566e459d9c694e4fca80af1d56e3cc6b37e7c39d318edbc592ec87e08fea
MD5 3affdcb0b513d4c13b47a13be03cfb80
BLAKE2b-256 97dc0e6f7d851aaee5975aa737858c458960e1b4d84e2a130a211e9d816cfdb6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2bd3f58111a42e2c6352f7805d6d0c1c4ab0dfae7a623627c8e525be870d41bb
MD5 0e64451809e187422478ed3e838ca1ac
BLAKE2b-256 f9e58bf6a1e6f96dff836cea18cca34694dc94cc9c36dd6c46177667b5d33f86

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8c7222eee56bc1d94911b383f8ee9ae0b665bcde1c4a24bf9eb674328d268420
MD5 e195b9b73b550818812b81675786ef1c
BLAKE2b-256 8fe53f6e4433625d4818d5124bef77c178b95fd9a21231889046c4ddf0a5a782

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a85605310e5d680493443d3f0bfb1b5b603a7ec0981c4bf829f97f4b60411967
MD5 ed150a17389ed7b4d207255c06918097
BLAKE2b-256 851df3f0c0f60ce2f506e2d4126e59ae3ba066d7cd22ed8794f6c7283309b4ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 abebe1c324d56fe2209e0cd823ffc395b8c49f31e27055a635b401cb752bb990
MD5 e1232684087e625fef2dcd85d1efb3f8
BLAKE2b-256 a4781ed1297ec0a044de61d6ec1e5bf0fca0d858c32c6135aa63347feb5fc68b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fdf0238bd5bbb56a0dc9a1e9d2dd8dffe4b10636d51200f0790f79d7ed2d7a51
MD5 006941b5bb84105179f6efb65296a9f7
BLAKE2b-256 737af52f7060c87a8428912ec60a1edcd8b8ee8e7fb6483c866340d55b26f8fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 416368782c8780dae733082196aff66b69b6dd173af8fcf5d7c994c0c8c51a37
MD5 109f35d6fadbe54b5974da7683a1e5d3
BLAKE2b-256 19182fa38834c1bbad779da70153a2fc4d8c9ea09c6f382ea833aec0e0816cd7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7685abaebb313a5cdab56b906bef2ebabd122f1114749ceb463d3d6e7f94dfaf
MD5 fea38fff48f45d27ed0133a9b7bb09fa
BLAKE2b-256 bf9930fa449377211c51b4ee040b61a58881f4c0552c8a3dc90ef7a98cbf308b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0f5115246963cc7d30f4fb4a189748f0136c587cf185028e65df35eb30959ee5
MD5 67d815c7cf53f6e4a458b9e7aa857a34
BLAKE2b-256 3b6845d8208785eadce9724ef51c5db8c076436bcd025cd3de1f4fd00652dea3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0540199766fcb402b24120cdce76a76c12dee88288cc4f323f67e4a72956b398
MD5 98c694777a53559bb78075be790f1295
BLAKE2b-256 833b74fd03d7a43936d2aedd05a0910fa783a68dba87eb42db9284e164cce0db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fab6d8d39eceb7cb694b94ade0caa51cb923650bd3accd974c1abf9cd28633cf
MD5 2bbce42eaf44b49f1cc66555d8154d7b
BLAKE2b-256 d4cb5bb6abd9b477e04d9d0acf3e052e19ba0982fa1e1b6d3a8a902cfc8c6797

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9f8140ee70d32112e27aaa87b77b57f56f66ea3940858c10ed41a33ab72f9054
MD5 43d5f791bbbd452215779dbb2365d271
BLAKE2b-256 eb451c22d9a617f7bcec907117746d3730a7226c65412189980d261c52d8dc5a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 80a55a8c84b3573ea08822949c201326689c3822c9246112ae018c40d150292b
MD5 1d85e92aad610596236b9028b4cbce06
BLAKE2b-256 cf1333fd5bdee69d9945ca0c065c055f1b3feea58e5a6dc2668f25afd8d31632

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