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.3-cp39-cp39-manylinux2014_x86_64.whl (274.7 kB view details)

Uploaded CPython 3.9

feyn-1.4.3-cp39-cp39-manylinux1_x86_64.whl (274.7 kB view details)

Uploaded CPython 3.9

feyn-1.4.3-cp39-cp39-macosx_10_15_x86_64.whl (153.1 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

feyn-1.4.3-cp39-cp39-macosx_10_14_x86_64.whl (153.1 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

feyn-1.4.3-cp38-cp38-win_amd64.whl (156.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.4.3-cp38-cp38-win32.whl (152.1 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.4.3-cp38-cp38-manylinux2014_x86_64.whl (274.6 kB view details)

Uploaded CPython 3.8

feyn-1.4.3-cp38-cp38-manylinux1_x86_64.whl (274.6 kB view details)

Uploaded CPython 3.8

feyn-1.4.3-cp38-cp38-macosx_10_15_x86_64.whl (153.1 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.4.3-cp38-cp38-macosx_10_14_x86_64.whl (153.1 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.4.3-cp37-cp37m-win_amd64.whl (156.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.4.3-cp37-cp37m-win32.whl (151.9 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.4.3-cp37-cp37m-manylinux2014_x86_64.whl (274.5 kB view details)

Uploaded CPython 3.7m

feyn-1.4.3-cp37-cp37m-manylinux1_x86_64.whl (274.5 kB view details)

Uploaded CPython 3.7m

feyn-1.4.3-cp37-cp37m-macosx_10_15_x86_64.whl (152.9 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.4.3-cp37-cp37m-macosx_10_14_x86_64.whl (152.9 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.4.3-cp36-cp36m-win_amd64.whl (161.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.4.3-cp36-cp36m-win32.whl (157.1 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.4.3-cp36-cp36m-manylinux2014_x86_64.whl (267.2 kB view details)

Uploaded CPython 3.6m

feyn-1.4.3-cp36-cp36m-manylinux1_x86_64.whl (267.2 kB view details)

Uploaded CPython 3.6m

feyn-1.4.3-cp36-cp36m-macosx_10_15_x86_64.whl (152.9 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.4.3-cp36-cp36m-macosx_10_14_x86_64.whl (152.9 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

Details for the file feyn-1.4.3-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: feyn-1.4.3-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 274.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4cdec228869c2ff39e069574a3ebd6d696844a3e89c95421d16fb2c66da7c28
MD5 ca979f20a1bee149ac22f755a6c3c75e
BLAKE2b-256 140afa2f90580b0864222c14ebbb42d36608fc5de0c6009837031bb0b8b05bc6

See more details on using hashes here.

File details

Details for the file feyn-1.4.3-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: feyn-1.4.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 274.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 90d354413dc97b044d1efaba8813ad8dc41dc84bd7848f36920674ae48e3cbe8
MD5 a956d9126ed43d2f0142ef1f5d5112c5
BLAKE2b-256 f68ef8eb35c98674f1986b603bdd7168d722cb6aeab72d1a87ea8ccf33bb05a7

See more details on using hashes here.

File details

Details for the file feyn-1.4.3-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: feyn-1.4.3-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 153.1 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 69769c458386887d03af9d84f6f5a88458d02e6a23f05aa55edd9ee65cfe8be8
MD5 86c9fd26cb617bb80a27c20c53ff3c42
BLAKE2b-256 fb6e2d23dcb2f9e7cd0fc8bf1fde302850d03bb252ecf2156a47719e1bc8bf86

See more details on using hashes here.

File details

Details for the file feyn-1.4.3-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: feyn-1.4.3-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 153.1 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ae95df119b0814dd474e35fcfd4f86c057b65569c1d8cdf3c70a4111b1b09a7f
MD5 35469752ce43cbadad2c075a3528d445
BLAKE2b-256 90c40c1a92df9a90c3d0e32d3ca6805288fd638a1d495c856cb5a59fcaec0173

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 156.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9977a4fb8494a821a2612d1de67fb50650b8877a9af9a885a94d3d5fa032b0ed
MD5 e21c31ffcb9ffbaef426375e584b403a
BLAKE2b-256 b733c868edc4ffb1ec38e77c9e07d79acda882ea0f5042eab45fa1a459f22e51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 152.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 aedb68edbe9fe011a16f13e4f021aa2d4e53d68022e0a330023d40ec10e72682
MD5 83b0e77907c85da2634f9c0b8c1132e3
BLAKE2b-256 83f1c2b9889fd4cad57d872c412ae1054c2b6d3af1016952cb26164490dc1d26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.3-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 274.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1710222ff361c49cf3423219e6e849960e138315612dd336226f25a5cda65f51
MD5 5f984df5f6e0cc46c7ec4a98dde1372d
BLAKE2b-256 39dfc8033977992dc96fa57e74360ae430a64d036a0a6bc77db295eb21db23c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 274.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5717a6a60ced2e0bd496abeea361875466923367447723d899b36ff313748d60
MD5 80a258bfc8452d597d7d5a1dfea8e035
BLAKE2b-256 973a1bdecb46a5c9076e18a704f450fdc2b41de1e71f038876f06c1bc3b0464e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e884b2f1730d4506705d819cda7e1dd34555e2bfff9e8bf798533ffdd87721f
MD5 01b13518638668f34fa63e20b663442c
BLAKE2b-256 c4e621ccb5a82497535a8aeb9e81d1953d36ee9863e384fbdad59a3611eb6392

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bee28ff446eebb2827ae31f0afa307f0dd482726b133740b1bbcc18882e06f41
MD5 18fc2b8b97733df199ed5cce5a32edfe
BLAKE2b-256 8116d9f4c567a3e0bcb7257a4a94c3b8a9dcdd79a1cee7c7a0b5bea63fd137a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 978e807596ebd7a7381d4fd4f0bc25864d9817cf0de5e821345b734f8151438c
MD5 81695a30998cec2bbe1ea79230ceabfd
BLAKE2b-256 c06920a1af3b0866c043b5a2d9fc8da6a095ace1056ce4a2e09bc78e5262b36c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 720be9e03e25dd648a11a4c3fb10f1905c71eb5ccc44074923272714610e67cf
MD5 67cd8c496b761e2ee516901a4cac1541
BLAKE2b-256 b0d33ba5e31d53fa4e148d30e3657b4b0757fdc22f6397fb0d04fe9924b3804c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.3-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 274.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 238781059202ebb1aeef8da0d70ba2d5adc891fe16798a0eb1e9c8efa78655ad
MD5 2a197740e8c55c38ae88547b05046000
BLAKE2b-256 689367ab4ebf915a6c4c003f3693c62a7fc2f5e1ee62dfdd7e70f25256081957

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 274.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f41f807c6bc5b35b9cc12dd937bb97fff4b1e5ced997cf893fec4d82899deaca
MD5 7fb3adbc021c35c8f0ee73ac007d8486
BLAKE2b-256 b52fa987b448b594a1e9f8e99c451b363dab155ae6c07dc81550a4ae4a9af4db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f5b8fb37dddbdc5b5c7643c5417e68d8b00e4057c3835139c602a1bb27b55ac0
MD5 29e812fe80577eade7552e9833d864f7
BLAKE2b-256 7ca7e8eb26355be150df770b6aceca09144f285f5ace5e185d85d824900a612b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 93c3387527d821c59408ab1b6d194851f28889006f214d1b7b6e16849a3c43b6
MD5 239bdd13a15fc173fee7802ac7f9d454
BLAKE2b-256 06e2a6501476844722a581e661ead8acb3e078083a66e81d4e5adeb26d798708

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 09da9a77ca53a44a3438e2ed8f578b770288f77f6fb79e7e7374417f66924222
MD5 4a86c651581c7b9604f4957971d302e2
BLAKE2b-256 acf44e5e891bb2dd522469cced0d89f13624c0965ef0da94fb1e4cac91c0e614

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 79f1e50138d307ddedd8bba3f2b758a498983825d0c7374c767c37292a08455c
MD5 746d00735eca577b42fa83c038ef1089
BLAKE2b-256 4d5b875ec41be60afa7c0cfe5c606d562ad9417f34e5e87ea4edecb2947c48b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.3-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 267.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48b384d3f38f65ae8fe82777e85f76bf2198ab5044b096d427887759fd2ba8ae
MD5 cdc7b2128590417b9554e999212ff875
BLAKE2b-256 7a4c6d10e0296060f429b4d7ed142e67f50637d60071cf8ca140007ff42faebd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 267.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8

File hashes

Hashes for feyn-1.4.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8a4d6b9581cfa898ed6f36c0fea3e5c46cd5a0a3238e6fe9d8e4b9886830c834
MD5 f6d60bfcb33e363495390df4d16ab11f
BLAKE2b-256 08a07862cf6188a9009b031bc9fe482ac59330bc9b26b671f5cf70f50d716aa8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 59d16730ac1b3443e42c22f749771f2f0c72fef0f04c6e24a89d3143779515e0
MD5 0f6056118306e795805a14e1665aa4b3
BLAKE2b-256 0e626e523f32c2bb9a242f54b4881bded7cce05bfafc8dd878074375027e5bc4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.3-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b5ddbb3224b93137f5c23e912cf96d2b90c7c9352bdb0716c7aceb4cb27aeaa9
MD5 cf3c490e054d35cacc58bde23c9a0de6
BLAKE2b-256 c984be218f216d2f27d57801e9d21d76d876185fc7ed217d0d8187005032471a

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