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

Uploaded CPython 3.9 Windows x86-64

feyn-1.4.8-cp39-cp39-win32.whl (171.3 kB view details)

Uploaded CPython 3.9 Windows x86

feyn-1.4.8-cp39-cp39-manylinux2014_x86_64.whl (288.6 kB view details)

Uploaded CPython 3.9

feyn-1.4.8-cp39-cp39-manylinux1_x86_64.whl (288.6 kB view details)

Uploaded CPython 3.9

feyn-1.4.8-cp39-cp39-macosx_10_15_x86_64.whl (172.6 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

feyn-1.4.8-cp39-cp39-macosx_10_14_x86_64.whl (172.5 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

feyn-1.4.8-cp38-cp38-win_amd64.whl (175.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.4.8-cp38-cp38-win32.whl (171.2 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.4.8-cp38-cp38-manylinux2014_x86_64.whl (288.3 kB view details)

Uploaded CPython 3.8

feyn-1.4.8-cp38-cp38-manylinux1_x86_64.whl (288.3 kB view details)

Uploaded CPython 3.8

feyn-1.4.8-cp38-cp38-macosx_10_15_x86_64.whl (172.6 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.4.8-cp38-cp38-macosx_10_14_x86_64.whl (172.5 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.4.8-cp37-cp37m-win_amd64.whl (175.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.4.8-cp37-cp37m-win32.whl (171.0 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.4.8-cp37-cp37m-manylinux2014_x86_64.whl (288.0 kB view details)

Uploaded CPython 3.7m

feyn-1.4.8-cp37-cp37m-manylinux1_x86_64.whl (288.0 kB view details)

Uploaded CPython 3.7m

feyn-1.4.8-cp37-cp37m-macosx_10_15_x86_64.whl (172.4 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.4.8-cp37-cp37m-macosx_10_14_x86_64.whl (172.3 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.4.8-cp36-cp36m-win_amd64.whl (179.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.4.8-cp36-cp36m-win32.whl (176.2 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.4.8-cp36-cp36m-manylinux2014_x86_64.whl (281.5 kB view details)

Uploaded CPython 3.6m

feyn-1.4.8-cp36-cp36m-manylinux1_x86_64.whl (281.5 kB view details)

Uploaded CPython 3.6m

feyn-1.4.8-cp36-cp36m-macosx_10_15_x86_64.whl (172.4 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.4.8-cp36-cp36m-macosx_10_14_x86_64.whl (172.3 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 175.5 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2ff249b74998987f257096d90d4bb41da39f033080ed33a2859d5fa7ac1f8d5d
MD5 94338bf08025cfccb159212f994e39f5
BLAKE2b-256 f17d514986954e2284a408627e3d51e5e1210ffe119065c705b0afd539d57b04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 171.3 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4e9dbcd1c19cd015e334fadcf50b7082b11aaf8d63c0e9b461d20fa1866e3a73
MD5 ec67bc83067d388e4f0425ede484805e
BLAKE2b-256 cd7895f9a818763002ac084881109256f6998c2a4179a8c75c56af68a86753aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 288.6 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9a87d8b608a17a2fda170989584b119e32c16397cfc5b7f06daff20f697511b
MD5 b3a593fd01372dc88d210ab607e69663
BLAKE2b-256 9c5b10b2dcece28cde8817fe34dca5a4bb387fb08c2dd85580625f074b801d26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 288.6 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c3b6a01953f3875d0df32dd26bd94ac3f02942891b73f8f8f9658a2b660791be
MD5 d434be34709fb5138db0f27dd4c5cc0c
BLAKE2b-256 ba9d67b9fc679553559cabba366661274f6ae2b1e83b1bb5214ad30d170bcdd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 172.6 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 da96d6e53aa5df260b80aa0de980fcd0e01922e4c9b6cac8905f55b5bdf64daf
MD5 2e574ce366bc869ebb63c10170a79f86
BLAKE2b-256 7ffc78508c74f026d2beeb20b8fb3ac1f5da80e83c6d065243731268896dacf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 172.5 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 63bec8f6bdc93f1a04ece2791b6f02b3cce8d2604e36765025f66a1996a24ee8
MD5 b4bd263bd38570585a97027615cef825
BLAKE2b-256 46df37c32b24860575fd2f9b6432435f673849f5cf5ffa1e263667778c4f78bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 175.4 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f7f3380cf91f5287b0db1c413a1812179ee1882c23f7229ecd6828fe61d3ab4c
MD5 1ec44921fc5162bdbb7ca616614d20ec
BLAKE2b-256 96d1bbaac4600934361e26ee7ed5a7253a64f60148bd0988960f0e3abc62aad3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 171.2 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dcc6f244574f20b5ac85fa6981ea5c9b70836679607f12539485edeb6288fe75
MD5 28b0f2a3ebaccaef99e1b5277f497146
BLAKE2b-256 a64cedde25b60f362708a357b6f15e9e95efedc5eb1a71403131bbab3d1badc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 288.3 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b6fa46d9025000f17233e5306f6b63855b04827428715a390ab199208f0edcf
MD5 2aec6eb3287273868966fbcce877c975
BLAKE2b-256 87f91c76d8bc97d6aac0f67cc0fb2ad987296e26e843fd2e3c9db6ce6964ae68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 288.3 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b97b9715443c2e4d6172d988cb18ed1892210fd2f90454192b1bc46884baaf21
MD5 d90b9b5b4d5a2bd864d45df016d4e24f
BLAKE2b-256 590cc183e1fa55604119cd5ceb9a4d2744506e79121ec65b9ba38a461178b6fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 172.6 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe7dd4022def0ba30ed154b37e780f874ab644f18a1ece470b0f1eb418913955
MD5 fa31f76d72bc5965d5c680259bea4fba
BLAKE2b-256 b37738c141d2c3a9f4188810f1e9b03f47a7649510cbe6643834bc92fee0296a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 172.5 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a714aad12a234bb1fb763e91d9bd132facc02b4fef3983df0888138cc056e4b8
MD5 e43c1dee75c8e28a9069820d85562464
BLAKE2b-256 4876870e1a9db5989ee454c7c42d6830a1efea58edd21bff422b201948d571e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 175.2 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b4c6d67b6172325f4cd5b11ff61930f0e05c46d638a8a3debfb4671615366ed3
MD5 4080ef335fd13a03e3865d48d54f82e7
BLAKE2b-256 b737c8cc8eb179ae3496103e6d950e3180758a35433bb4724046dae87358f5b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 171.0 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d41d0a1e4a2607c4e4f585dc78c7cf55d70eaaf3e33aeedb3e8a47e98f0d4e30
MD5 5aeacc5164c03c03314b12227096e3c8
BLAKE2b-256 6368c0f8c949e336fda999b61fd8802da2df106416a3f10db18b40047b29a314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 288.0 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f22f217468d4be13b49f59eaca281fba7c05bd3a4d464aad8dfbbcc636cb60ef
MD5 b76e2b34c16a406f5aab852296ff8ee8
BLAKE2b-256 878e95323eb431e4a592d47dc11b8a1750544ff8a78362abc3b59c63fd29175e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 288.0 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 63297631477a6d186a67fe0937fc6845b44778a45d1b9c5d51df8a37a5791f8d
MD5 c487c3cd13de145be0ff04836cac93ab
BLAKE2b-256 053143298d98065ea5ceb905799b497bf379569d0e8a844c1c772bdf4799f656

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 172.4 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a18b50c493e3c2966584cf317c99de74bbcc7afb10ba0b524cd332f9b120ca36
MD5 621a45ada8f89e5bfe0c6e570f165e44
BLAKE2b-256 96c6ea1f2711d504f4ebe10d86935c33f98141b5fba7b9d397cc84e65dd3e0cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 172.3 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b2706df24070ed024c04c06b136c7448a0006da27524d7c92d41ebed952b7753
MD5 168a4c18926a72f31aa110141aff8604
BLAKE2b-256 17a407ba868d6eaa2fba5bde091032f3f327f02b410ebdaf76e0d5ee73a1c337

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 179.8 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6ac8b31e930bc47bccb8849fbfbb1e5af02653f614dc5eaf930fbcbaf94a964d
MD5 6ad86824d44c75b8a5504b190115a9d9
BLAKE2b-256 6029d3cf9592604d0fefec9816d12a13e761825e69ae9c847b356f11b177359a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 176.2 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4fc4786f74e3b4239e2d148feefa929e0b710dd1f184c870ce1022470acf27e5
MD5 c36f12ae43ae1215ae533b48d58803ae
BLAKE2b-256 a0807562fdf017953f4d0031b2abae859aeef6bf823a3a3be29410d2955d22e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 281.5 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3efb0fb930f19f9fa0fe03c3b945d2f103f33e139c7f3d24baad1197ed1d06e2
MD5 e4e5a73edaae3aaf4c3651bab7f42d64
BLAKE2b-256 a1d02c652a76e1e2e8069a77d0732d851c250807bfd867ce154386ae0f0ac6cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 281.5 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 008494eaa71b3a817a0ed7d96c79e1a1d4091fbcaf1b81ec88b6daf856f69034
MD5 fb79ea36a499b0e43e1b98c30c4f683e
BLAKE2b-256 16ea2935e356bd4a273e61f9fca9a13df57d9921107e582a3abef350cdeb706e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 172.4 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bf9b2bb60c8111fa5bfc2620f01771bc8b31e478a4aa79fd1922611a8ce30c94
MD5 fe0104f94f5f6f0ec92bf0d0eaa87633
BLAKE2b-256 9b78e00af5d59ab7dc65e8440f44ac8003eef9fe63ec6805cd89b70ce05c540c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.8-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 172.3 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.58.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.8-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c18101f8b69e4ea6e8af59c7cbafa4d44f67e6e8670042f7e7785ce967d5a12a
MD5 3fcdd595a9679841eee0cd747688cad1
BLAKE2b-256 a30195fc31b28683d9546789717bdd8621e06dfd3beb11c0fa6790fb4a103cc9

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