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

If you're not sure about the file name format, learn more about wheel file names.

feyn-1.5.4-cp39-cp39-win_amd64.whl (186.6 kB view details)

Uploaded CPython 3.9Windows x86-64

feyn-1.5.4-cp39-cp39-win32.whl (182.6 kB view details)

Uploaded CPython 3.9Windows x86

feyn-1.5.4-cp39-cp39-manylinux2014_x86_64.whl (312.5 kB view details)

Uploaded CPython 3.9

feyn-1.5.4-cp39-cp39-manylinux1_x86_64.whl (312.5 kB view details)

Uploaded CPython 3.9

feyn-1.5.4-cp39-cp39-macosx_10_15_x86_64.whl (184.7 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

feyn-1.5.4-cp39-cp39-macosx_10_14_x86_64.whl (184.6 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

feyn-1.5.4-cp38-cp38-win_amd64.whl (186.5 kB view details)

Uploaded CPython 3.8Windows x86-64

feyn-1.5.4-cp38-cp38-win32.whl (182.5 kB view details)

Uploaded CPython 3.8Windows x86

feyn-1.5.4-cp38-cp38-manylinux2014_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.8

feyn-1.5.4-cp38-cp38-manylinux1_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.8

feyn-1.5.4-cp38-cp38-macosx_10_15_x86_64.whl (184.7 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

feyn-1.5.4-cp38-cp38-macosx_10_14_x86_64.whl (184.6 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

feyn-1.5.4-cp37-cp37m-win_amd64.whl (186.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

feyn-1.5.4-cp37-cp37m-win32.whl (182.3 kB view details)

Uploaded CPython 3.7mWindows x86

feyn-1.5.4-cp37-cp37m-manylinux2014_x86_64.whl (319.7 kB view details)

Uploaded CPython 3.7m

feyn-1.5.4-cp37-cp37m-manylinux1_x86_64.whl (319.7 kB view details)

Uploaded CPython 3.7m

feyn-1.5.4-cp37-cp37m-macosx_10_15_x86_64.whl (184.5 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

feyn-1.5.4-cp37-cp37m-macosx_10_14_x86_64.whl (184.5 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

feyn-1.5.4-cp36-cp36m-win_amd64.whl (190.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

feyn-1.5.4-cp36-cp36m-win32.whl (187.5 kB view details)

Uploaded CPython 3.6mWindows x86

feyn-1.5.4-cp36-cp36m-manylinux2014_x86_64.whl (312.9 kB view details)

Uploaded CPython 3.6m

feyn-1.5.4-cp36-cp36m-manylinux1_x86_64.whl (312.9 kB view details)

Uploaded CPython 3.6m

feyn-1.5.4-cp36-cp36m-macosx_10_15_x86_64.whl (184.5 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

feyn-1.5.4-cp36-cp36m-macosx_10_14_x86_64.whl (184.5 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

Details for the file feyn-1.5.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: feyn-1.5.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 186.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9903a18ae5937beb4c2e42c13d37847b4ce42f8813c0255fee2bf51415363a9b
MD5 c485dc1f0a872f59d80d2e1e40c72b7e
BLAKE2b-256 150c49d86cfb94a09b1716b49cdce7d66c7262280f2b9bbc3f879f5a60845fd0

See more details on using hashes here.

File details

Details for the file feyn-1.5.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: feyn-1.5.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 182.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 435827866e6b06503bc1384df86865e6594ee187279df187dbd43261d7034f6b
MD5 ba2e4e6838cb08da3d9d7b336850e210
BLAKE2b-256 a5bad5d84e28c825da7954c0cf285f8de000bd15ef3090f06554597a29ba572a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 312.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8563871f44dfbb5786f7505af6f8c648335f43c4b329627ef27cdf53d46d73eb
MD5 188ba23ffadfed996fb382995483e1f1
BLAKE2b-256 aa434a571299c0378fcb3683e8ce791d804af43031577573160c4dab4ca9b218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 312.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9e0b4eea6a85374bf8f1dd569024f8f3fd11f0742cae884e2987e238a24164d3
MD5 114005af700661d11276ddb93e518136
BLAKE2b-256 c4a668062907e4aff5a76d4efda7efce5b80305aff848d179e10530bdac2067d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 184.7 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f229ca20ef426aefdd2f071ec20a2b95a5ae875ae54af90fbf6cb00517ac084
MD5 0be89c1c9e30d25677dddfbadf50352a
BLAKE2b-256 bfa218fd0844bcd039521047a4104cb5a64dbfa5dd683535181e2f409df8ad3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 184.6 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 dcb1a7ae89249931e00cb931136916fea8f09984068d7f4f12f3181cf35712b7
MD5 039e4b432d606a573420251077c6fb49
BLAKE2b-256 57e284b1d448661b894c932eefd3978f9b6041d28f0b038cd612b50db98922b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 186.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b0443435bdcec2eac2c63523b54206584b0810285c19c4ab9d6866bbf89ad298
MD5 1603dbe114147494ae07b61271eca91f
BLAKE2b-256 52f0962dbaa9839148cd34c2a53e9d9e6685edddfe4c0a385fe551c84e65cb9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 182.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 587cb540cba976c0808950a5cb40fe758ebf85a28d5c29e97f1997864ef43e84
MD5 1fea677d7cf0fbf77304e912b72b188d
BLAKE2b-256 7e317a50c1cd6fb0fed8a3aac3750385d1952a11d61c196b5d64f8411fa0e26d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 318.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 264e08d40aca67db1276f50a82615c2c788803b48038ffbbd3cf8a649f982db1
MD5 cb66c263542432267a9f44b62aec937f
BLAKE2b-256 215ecb892619bb241fc9a4f13e6fdc64a483f93906c1fb820407a07795750321

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 318.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd7bed205416228681c0c8e9f90d65d76591f45a1f1efa73bf744a310e1f24f9
MD5 71d4817cd7eea7dd37fd449b04e48b7f
BLAKE2b-256 81e404ef9a861e3c9da3b57b11d9a3c1679195b401ea7629e4960622fa84f700

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 184.7 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 699a3724b97eb843711008338f2e3b772ac85bbfa9bb98cd5cdb19d4cdcdca93
MD5 4a78c6dd052b99350c1d77339b61fc5e
BLAKE2b-256 67ba1f4bb8584503d8b9bd0c61e38a6907f2a625a0b14e3a171dd0d9c02a9a81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 184.6 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 430fadb56eb6c82c3676b666ae5d18435cbea66df4432b8558871092e8343dc7
MD5 6efe078b398be24a2392b087644f1beb
BLAKE2b-256 f3019c44447ec32598ef3ca3f921609f51f3ba7e0aadb2756003c57f1eb133f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 186.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3e0f8e9b24cc2aad55fffa2d47a44c694e908f07725066c0636b8491324c6949
MD5 17792cef417d6f72e5a7bf6d73b47d78
BLAKE2b-256 9a274e372ce1645420fc52cde895e2a316db4eba5337c9e9aeed02f15bf3b235

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 182.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ddab0cce8477658473df512c1934cba8713f7bbad072a8acc4ea7c100e2ffe7a
MD5 807be1f7ac68de68b49ee319855bf2df
BLAKE2b-256 8864921fb55e4d4b76538838bfacc0d62c36d0be6ae6fabacc412c447b96868c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 319.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c902165ba82e01d67537eb20d9cfe93a8f0b0f05ad4a9954f349c9a3d54bfe0
MD5 314e1a53a2953f58f4fa1d10ea5e4f41
BLAKE2b-256 0edb3a6a482b01ea9e11cdcd10d2f3e30492f12fe293e62aa805726400236b18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 319.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0a598827d5e7ac9004b7e5f7b6fafa84adf7ac9e49eef090d3a06fe333526f4f
MD5 c0e4c7e1e0797a7f10ac9cc6da23aa2a
BLAKE2b-256 35e5816cecb2013c9ecfb19ceb26c671cea1424f0aedade8ef2598ba0db0b471

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3689c4f4ac4dd0f0deae232ea8f9185cac2fb9e3e3c3d5b46fb45bbcc27a3f9e
MD5 a4c287273efd9d4a8027ba445ab66648
BLAKE2b-256 deca4d1aac27dccc75d43b231022afb9f2b768996a2e3e4a286cd8856f4767ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5e6276c6959fcaf9b0ad2bf7406c1f8f4fa2ca0c608c613057b90f8b810ffeb0
MD5 2145d6cb4eb4d404c5838cc58d231327
BLAKE2b-256 16fc140dd410d2a3723780e6aeebd5ce7cb7eec8f39c4f1d2e9bebc62abb7a62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3d8a47467cda5d44fcbfcc273326c26d980df696ba537b4b9d71bae949852796
MD5 d62192e651a82bff935a323048be4a9f
BLAKE2b-256 66413ffc536ffa4025d8db9fd466da6a05301e0c18e6a920460346565f9e730b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 187.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0cb9f6a5cddabb6f2a825aade137051320dc5ff7e09a8070aa3cc8729336c8ef
MD5 a6090ce121b06e2e8a9de3880b9de94c
BLAKE2b-256 a2f8df92db8080be540a6ec5878eb7bb68cf1483f0e08fa223864afd95050ca1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 312.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8251aeaadbead203f878feb32d68c1779bc34ceaea4b66d20db32fa72378f8fe
MD5 1cc69941f2bff8f6d5fe95d16b22e871
BLAKE2b-256 37f9d28885d5533815938e11090d7b82a420a7e5cc4cc598e875dee63be97c53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 312.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6a0069c0fabaab4813e0f71c18bcbc2276ef4d06109ecf337bbf25f8a9f66d71
MD5 22613f09e9827df064629c4c9125daad
BLAKE2b-256 a0e3b8768020ee3fedc724cc5032f555c5bc9b7a861a86bba5acd65eaf28eac6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 263c9005d8fcc25ad85a6f7f296a1a2f2eb29d21de7c2850514e6f7d37b072f1
MD5 2d6a9a162314b2c9d6763c55b8f3c60a
BLAKE2b-256 158f77e5cebf6bb42969bbf72d97051071d53795395722761a17aee9148c127e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.4-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for feyn-1.5.4-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 258ce5404505b0a3ea1453c91963b8a0d22665dd20991f095b7e8cf7714c803d
MD5 33e42cfe19f9274ac939e05a48c3fc32
BLAKE2b-256 da0584683313b6cde15cfa972f2ac31198051e060a6dad1b1f00e787418a3ca3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page