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.1-cp39-cp39-win_amd64.whl (176.3 kB view details)

Uploaded CPython 3.9Windows x86-64

feyn-1.5.1-cp39-cp39-win32.whl (172.1 kB view details)

Uploaded CPython 3.9Windows x86

feyn-1.5.1-cp39-cp39-manylinux2014_x86_64.whl (289.4 kB view details)

Uploaded CPython 3.9

feyn-1.5.1-cp39-cp39-manylinux1_x86_64.whl (289.4 kB view details)

Uploaded CPython 3.9

feyn-1.5.1-cp39-cp39-macosx_10_15_x86_64.whl (173.3 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

feyn-1.5.1-cp39-cp39-macosx_10_14_x86_64.whl (173.2 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

feyn-1.5.1-cp38-cp38-win_amd64.whl (176.2 kB view details)

Uploaded CPython 3.8Windows x86-64

feyn-1.5.1-cp38-cp38-win32.whl (172.0 kB view details)

Uploaded CPython 3.8Windows x86

feyn-1.5.1-cp38-cp38-manylinux2014_x86_64.whl (289.0 kB view details)

Uploaded CPython 3.8

feyn-1.5.1-cp38-cp38-manylinux1_x86_64.whl (289.0 kB view details)

Uploaded CPython 3.8

feyn-1.5.1-cp38-cp38-macosx_10_15_x86_64.whl (173.3 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

feyn-1.5.1-cp38-cp38-macosx_10_14_x86_64.whl (173.2 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

feyn-1.5.1-cp37-cp37m-win_amd64.whl (176.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

feyn-1.5.1-cp37-cp37m-win32.whl (171.7 kB view details)

Uploaded CPython 3.7mWindows x86

feyn-1.5.1-cp37-cp37m-manylinux2014_x86_64.whl (288.7 kB view details)

Uploaded CPython 3.7m

feyn-1.5.1-cp37-cp37m-manylinux1_x86_64.whl (288.7 kB view details)

Uploaded CPython 3.7m

feyn-1.5.1-cp37-cp37m-macosx_10_15_x86_64.whl (173.2 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

feyn-1.5.1-cp37-cp37m-macosx_10_14_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

feyn-1.5.1-cp36-cp36m-win_amd64.whl (180.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

feyn-1.5.1-cp36-cp36m-win32.whl (176.9 kB view details)

Uploaded CPython 3.6mWindows x86

feyn-1.5.1-cp36-cp36m-manylinux2014_x86_64.whl (282.2 kB view details)

Uploaded CPython 3.6m

feyn-1.5.1-cp36-cp36m-manylinux1_x86_64.whl (282.2 kB view details)

Uploaded CPython 3.6m

feyn-1.5.1-cp36-cp36m-macosx_10_15_x86_64.whl (173.2 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

feyn-1.5.1-cp36-cp36m-macosx_10_14_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 176.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6bc715185ea231094d85fee30c33fa9a7097032b2662e42997a60f1c41139720
MD5 8f374315474ca97f314bcd64c61c1da7
BLAKE2b-256 3f1aa1805b211eb4f621b40950f0c8a7fc66329d22b344a8a0a3b5eaad17e2fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 172.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 04b720fdc3861d26b0761e9799954cab5f2a4fbdf1f63891fd4ab58d56215da4
MD5 271d9039119bc1848181db8180f9eb6d
BLAKE2b-256 fdd80e8a5000c1e5a40031a4a7edab0c75c52e02a588e325de670a92f40809a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 289.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5e7e2aa389eebb7399972cdc325f32bc85accb05b29726e4d900f7d5d85e9a5
MD5 6881113b7bee7200c0f31f421336c770
BLAKE2b-256 aa6a562e5d818cbb2e55a1821005352a2021117c118e4b96a91776b98c82b9bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 289.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6888295cc1ca223615a067f8276bdb8ee1d6bebc481a40595bd5853e54205a48
MD5 6ba985159b000d9e5274b5a69add535b
BLAKE2b-256 0dcff6004cb116abd5cf14319f803790277b987e991eac13c8be69e0a667feb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.3 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 74a82e2c1e98c70daaddb2f0d481289838ac329b4c4059406ec72da1a22dda63
MD5 7493943e60bb6fdc33b1c65704c3aad2
BLAKE2b-256 0a2ee26b3c1da60447479cf783a2390ae8e0bb8a68318e7ab7859cd4eb5593ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 494fcf086ce67e9fb32e52e9ae6e6e312bd1397d262bcfe9fce38e3b4d66707c
MD5 c21e05b8bd5a65cdd2c1a1d70619844c
BLAKE2b-256 2302c4633f35c6308c8f8be02a332c4d0be532cc2a241b6405756fa6663f83d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 176.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b964d91769620403500a3cb52af3c97c3f11225c56661b246d9ed838075a6577
MD5 96e0a04873b2782218639704ebd2529b
BLAKE2b-256 2e79a2fc2613815784b206cbfe22e2fc1be591b02602a5e96d20159e8c37fc18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 172.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 33ce45ace0c8cdb6f1f416434bdc9fca8fb4b9f349aaf636d2d575685dc78e9e
MD5 98a11063fa4135e1c857eddaaeb79d4c
BLAKE2b-256 fc1e984b837c5a08feb75d90ce70fdfc0d3152601c1bd838b328297163506ac1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 289.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61b8e02a9645ace2dfe4ac17bbd67f3904352c9929b7f9c2c1c63a155463bd77
MD5 1fa03ef6984950930f8ad2fa1a82566e
BLAKE2b-256 0ded529e9cd79076cbd931311bedb0294c3236ffb055c1989eb9114d1b18374c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 289.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f01210c17ae976c536298e769a2998d1fceda335c2c76bec1284e644b9dea642
MD5 077f432efb1c2f36bdf715fb73338bf9
BLAKE2b-256 24cfc4f9c3b75d251c30623db553d126d18a804a75befe94f1e6931fd98447a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.3 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e2d25cc5f53c1be18a5979572ecd88a170c22479096fdefca05d23f5dd834a7d
MD5 7454d2f5bf23953b2eb4ee4bd70b5ebd
BLAKE2b-256 4aa39e588356dcc6171f1b9f68596b0e9583726ad3b919a19dae5b8ad8b8c352

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 084399f68c319cc31f7ec84c83592a022365d214917e0a71c9bbf31e1bb76434
MD5 a1fda797f2942a42e888554db9e18b5c
BLAKE2b-256 74c1f9c2c4551aa64385d3c64709e3de859b5836dc106d44da4afe6b94ef17ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 176.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fff80e9bc67398e3311f43c867578a2a153fe7f6b9628bb39426540febbbfcd5
MD5 c55d9d954a1a748adfd89d6f644d978f
BLAKE2b-256 9304cbed08a193115ce6ae47dd1fa596ef415d991f9bfa5c0f633ba9995bbaa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 171.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d4b3d159bf7887df6855ce86569bf9cf8b8b23795f7727cfc36aad9386c2f953
MD5 a623642c1732dd50ea7b4f436ebaf25b
BLAKE2b-256 141ead2c3f10878326f2259c14d7a689d51fda2a9953bc0e347f516df256cb08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 288.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2606ff82c4bc129381a8fd630086b65649a877de09dce1c79fbd22af0823cfd
MD5 9ec19c794bea20fca91fb716dc283d97
BLAKE2b-256 26dc230471fe7a1bc7f2043cb85802efa092f0e3a5c6f978d86fb2f816123e82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 288.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f988f70e1aa835d8a05954fcaaaef2d610fe1257303cb930b9c869f78b048b4e
MD5 11d51d0384d393aa6ccefca06b4af9fe
BLAKE2b-256 15edbe4b3baf74cfa4d3ebb622166a0502790286345caf104edd03355faed55e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c5724b282887b37e5be3575c8162643cabef941ea7817e6d25a6beaaf5dd822b
MD5 b9b5377f47a294a0cb5dd4766a2a9c2e
BLAKE2b-256 b7f4e1937b40a043fd8047cb8f800cf90ea0581743e40aed229501e00cfbf562

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.1 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7c54cc8598b8b1d82110440554a600b2e2625d1048c690a2a009da54a842a24d
MD5 f3ebaaea8840e838bdd63ccde8fe58be
BLAKE2b-256 cc6c5c53584e1cc22dcb0f399e8c304fe38b5de6c18c705727dbcfac49687c0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 180.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cde51a765d6cbaa05deb5d4b8edabba9783de8764fa7eb988863f40b9839ce8f
MD5 9ab643f36af9f73ba447292efe7b14cd
BLAKE2b-256 1354f3219e3b2f14825e34f9b36ee4e7027cc3e3cd3192b8b8405e0c88797c27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 176.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e544200c2147f60c22677db7c06cb05121b33dda2a1fd1dcfc8cfaae434ff78c
MD5 ed3db17e60dcdbdf4a757f57146a203d
BLAKE2b-256 c8d944b1c9963b2604d2a7b5e27bb07949d0c45e2e116262588831c76c40a1ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 282.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5faa8361d2c36db32536deb0a8cbd503e74cb789647b9662900bfcbc7bff85e7
MD5 c581d51bb376c2cf683c171e20169468
BLAKE2b-256 5f05c0abdf751f5883be8f80f054ff3952f29872ac2c8d80631f767d2fcb40b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 282.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f40142b80b936afc27cff1ba949011fdfb623e485867b1ff4ef29e81cc2616fe
MD5 f99b934d7ac78fc90ce96016286d719e
BLAKE2b-256 1e6b6721d7be1af26686dfaf08faf45b9b154adc058204d2471bb4b8e45dc052

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13b4bc79a9db080b36b55c20f0d5d6a7af46507e1e788ad952c70f630abbcaa7
MD5 bf880f7d664ed3ae11e317cfa7681ba8
BLAKE2b-256 091281821f6a8365e31fb1817fd6678fc2bff9ee0af4b4ec67854e3936a3260f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.1 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1bc02ddee596333f9e1f2400831f39f38da5d415362883b74aa5b17c5eeceef7
MD5 9f8f1011868436a15a4499b24ca7bb31
BLAKE2b-256 025f3d6e8a21759f67bf88e3ee6d772303f3abb49cc5ae13f2082ee16c32a881

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