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

Uploaded CPython 3.9 Windows x86-64

feyn-1.6.2-cp39-cp39-win32.whl (186.5 kB view details)

Uploaded CPython 3.9 Windows x86

feyn-1.6.2-cp39-cp39-manylinux2014_x86_64.whl (316.5 kB view details)

Uploaded CPython 3.9

feyn-1.6.2-cp39-cp39-manylinux1_x86_64.whl (316.5 kB view details)

Uploaded CPython 3.9

feyn-1.6.2-cp39-cp39-macosx_10_15_x86_64.whl (188.6 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

feyn-1.6.2-cp39-cp39-macosx_10_14_x86_64.whl (188.6 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

feyn-1.6.2-cp38-cp38-win_amd64.whl (190.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.6.2-cp38-cp38-win32.whl (186.5 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.6.2-cp38-cp38-manylinux2014_x86_64.whl (322.4 kB view details)

Uploaded CPython 3.8

feyn-1.6.2-cp38-cp38-manylinux1_x86_64.whl (322.4 kB view details)

Uploaded CPython 3.8

feyn-1.6.2-cp38-cp38-macosx_10_15_x86_64.whl (188.7 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.6.2-cp38-cp38-macosx_10_14_x86_64.whl (188.6 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.6.2-cp37-cp37m-win_amd64.whl (190.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.6.2-cp37-cp37m-win32.whl (186.3 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.6.2-cp37-cp37m-manylinux2014_x86_64.whl (323.7 kB view details)

Uploaded CPython 3.7m

feyn-1.6.2-cp37-cp37m-manylinux1_x86_64.whl (323.7 kB view details)

Uploaded CPython 3.7m

feyn-1.6.2-cp37-cp37m-macosx_10_15_x86_64.whl (188.5 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.6.2-cp37-cp37m-macosx_10_14_x86_64.whl (188.4 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.6.2-cp36-cp36m-win_amd64.whl (194.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.6.2-cp36-cp36m-win32.whl (191.5 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.6.2-cp36-cp36m-manylinux2014_x86_64.whl (316.8 kB view details)

Uploaded CPython 3.6m

feyn-1.6.2-cp36-cp36m-manylinux1_x86_64.whl (316.8 kB view details)

Uploaded CPython 3.6m

feyn-1.6.2-cp36-cp36m-macosx_10_15_x86_64.whl (188.5 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.6.2-cp36-cp36m-macosx_10_14_x86_64.whl (188.4 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 190.5 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.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93bdce83f5eccce9630513a655e1c3cee1543b69e19ec51b0aed45083e656389
MD5 18be0befb7a2c1e034ed0f2bbb586c9f
BLAKE2b-256 c6228326ef6d67ba273e769ec34793af96112155e44aaf658606b6e9d8f7983d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 186.5 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.6.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 87110c97e22c730779aae321298b26e1b1b3d08889582465ca1e09c81a8ae5d5
MD5 a47d380dec42f4336e5b3961eaec63a4
BLAKE2b-256 7eb440e22f0d1b0fd69d9906449f67f75d6b3b85bd5d1911638e554f01db1ddd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 316.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.6.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec3444a554894791d54f07f662692e614b75e227f62fae73b03d8b7480670f7b
MD5 7631f0c56e12cf3f2f76f35b2853a41c
BLAKE2b-256 7a6f74478239dc302a6a6d49e20bc17cb5e84221bd5341ddae1e11be112a276e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 316.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.6.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 30566097cb430c77e360c4c30d4b2960d84ac4af566804071d4546ec1c6b9727
MD5 9c6564c0986beeca2027c54581836ed2
BLAKE2b-256 2c533a43909061843fd81203aa91160090fa207445d91ae5e9c3801b99d8894a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 188.6 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.6.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 72ba0868f24e9b4cdc6698b513d918f290449f57710860587e4f7456d7fde0a8
MD5 36bfeb85303750474833126fba11da85
BLAKE2b-256 117f758d888819c5e69f4529fa1ce21625796bba92a357654d5b6a2854f292b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 188.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.6.2-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b895a139a8ac45f77d7ed00624481cb595107fac502e8156e15e42e54f46c27a
MD5 23e56869031466990f7e1a7f3db7ef93
BLAKE2b-256 f2d5b6239163b99f3d68f45d79dfaa03f8ba6f3499d38522c937d22d987d1047

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 190.4 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.6.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0468276964354569112bff534d19e3c9476f13198793a5151fd1b71397e2688c
MD5 a774f020caad87f79c42266647be7f6a
BLAKE2b-256 cd45b74d3c08419843828cbf42475647fe336698da0262a58c67fbd92dedc7f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 186.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.6.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1ee9f0f3d71e37a6b6ca2ede084f4c7148a989d118bc23e92a5ba8de4230c4bf
MD5 6957b520d53e8e913a346c67d1dbb0eb
BLAKE2b-256 46faf0c0da3b6ef316ce3bd52494e98808b34f3855378694df48937d564b10e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 322.4 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.6.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7895dbf9bd066d84cd3861ead656dcd03b54c7ab4f46f7cf5516afe5a8fb1b5
MD5 bc0c91e3dbbcc6f95f2b11a255ab4c0a
BLAKE2b-256 8c413616f4da9f5e7e5a293dd9ff7b7203c4195cef1ed9d533bf67f51cabae45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 322.4 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.6.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f8a3f62651c42c1943d9d562d1f28d261b68eb37b6b58b9d5428c50fe30e8fe7
MD5 b1e0196acf9cf6a61a80291a69475aac
BLAKE2b-256 d094521fc5665f310bd1aa7930e0fb5785f827670a836b88cda1b63d28134507

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 188.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.6.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2ceca647bb12b537271e9a6a9966a03717fc9c23e5dc4382045db25fe50a33e2
MD5 5f5c3ea2a72c371300887559be8e9839
BLAKE2b-256 02a6ec56c1fff5bf31cc6d1309521aef9c6cea1f640d37d839c5c7ab689bbf93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 188.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.6.2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 efe7ff4525e8a235ef3b554814bdc9bf7aa266b5e18f41137c5d32a6f52111b1
MD5 ee33a87f63fd376a69d6e1c08a65b23f
BLAKE2b-256 33cdc8e2fc2261fbef6caf3f50c1ce3397fccf3d996ff12c0920138dc14044d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 190.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.6.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a77a844d13cc8bb80d7a967bee4b98d62f5c56a52a1d368b49b581524ff3ec83
MD5 819f4f417158fbdb2d70589a645dc9fa
BLAKE2b-256 de706d050cef2bf642b42e1d7c02647e5e0b6ce4ad5d11e36cd73de70c280844

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 186.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.6.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ca4619ce0728266c94ff3f3645fdf21e7a5daf706d1bf4a533be497ee3a297a2
MD5 b43608aefe0d51d4af428c6243d9e5a0
BLAKE2b-256 856b7b2b375908b8ca14962d33f429b3b0b411bef874f82769fb4b8cf08774f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 323.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.6.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16bfb2e9ce131f53fd79e0a364b241e4fce18b5fec741743d9ea8d872da90f29
MD5 f85440376c2df368f838b20bf3915c7e
BLAKE2b-256 e249a108307b12109b115513721c9e1aca77e93422f16dc40960d0b87beebe3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 323.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.6.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fd0eeafea7e5e1f88e8f3e2e248ad1940e849b99f0824eaa36afe24c9202671d
MD5 9be99de92de7ee085e7a7025fd1cf495
BLAKE2b-256 48285d6f743766f91bace77f7bb07e352b1f2dd56de2a951528673bed069cb84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 188.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.6.2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a90e3c2e149d800c5c833728de0c0ec34d9c2bf413771319b2b81a36613d38e4
MD5 dad9cc2d63184dad1eb1be42be3991c1
BLAKE2b-256 db62e802382ee8794b31e311c3f61adc5fdf0d489f913d18f615734d15e85bdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 188.4 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.6.2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 00cc95ff08b61d09f7414767b4e37cdd345e5e788962080a5e96f1d7b7b21a54
MD5 205220a6f897094f32d8461a50e2697c
BLAKE2b-256 44d4da558c40a327320b9d0ea4109bba96665da85cab39263d15c5554c3b2309

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 194.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.6.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 08a397946d79d0d5890f5eafcf91c618f494d025699b0cee39e855190136852c
MD5 3e7414c5c14d410687893f628fc4718f
BLAKE2b-256 c1ddeef9ddc4405a4d7235322560592b5101e8cbe2429f0160eca450d00cc90d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 191.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.6.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ac3708dcb073462e38c90ec42da797c9da4dcea2b357a9c8d0e7afbf9bd5209f
MD5 246665a3ff60616345f972600e7d8c26
BLAKE2b-256 b3881fc467220c4a12352d72c27ab5aa05ff22d1a9295f400dff40c086d74d07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 316.8 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.6.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35ea90105563db2b7484f7dd4b706b418bc8c5ea777d4afbfe2069e5fd01add8
MD5 ac8cc359106a7ecf56aa6c45b54aab22
BLAKE2b-256 313a0c19cb856c8008535ccccc70318d61bba48066d451cf1ab0bb36229fb8db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 316.8 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.6.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b03cb3088bf6659eec77b38809e7108e2730c1f4f937ff57640fe9ca57bb5175
MD5 eacff0c300ac807d18e43e0f5d9eca68
BLAKE2b-256 782f1a4d5248987e08cb02205612b9d73718f1ff91008b17a31f56b4a946c01d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 188.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.6.2-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 af52c11ef905922fcd8194f367a29334be53253d12a1626215e27dae0da4fb80
MD5 855ac8cea8366cb19a06b7f8073fa71e
BLAKE2b-256 a1a49d55bca1e7872931da562e62b32543e01025e934f2bb2140ef3b2f244560

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.2-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 188.4 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.6.2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e1fc92d3abcf373549793f3559bc63cc5e3f8181dce241fb57918c0f02688508
MD5 421e9fde57f2323bac09b457802130cd
BLAKE2b-256 a3d024d88246fd248e9772e346209d7d1fef5ad0761bbaad5cc2102218bed3e1

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