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

Uploaded CPython 3.9 Windows x86-64

feyn-1.5.2-cp39-cp39-win32.whl (172.4 kB view details)

Uploaded CPython 3.9 Windows x86

feyn-1.5.2-cp39-cp39-manylinux2014_x86_64.whl (290.3 kB view details)

Uploaded CPython 3.9

feyn-1.5.2-cp39-cp39-manylinux1_x86_64.whl (290.3 kB view details)

Uploaded CPython 3.9

feyn-1.5.2-cp39-cp39-macosx_10_15_x86_64.whl (173.7 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

feyn-1.5.2-cp39-cp39-macosx_10_14_x86_64.whl (173.6 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

feyn-1.5.2-cp38-cp38-win_amd64.whl (176.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.5.2-cp38-cp38-win32.whl (172.3 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.5.2-cp38-cp38-manylinux2014_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.8

feyn-1.5.2-cp38-cp38-manylinux1_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.8

feyn-1.5.2-cp38-cp38-macosx_10_15_x86_64.whl (173.7 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.5.2-cp38-cp38-macosx_10_14_x86_64.whl (173.6 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.5.2-cp37-cp37m-win_amd64.whl (176.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.5.2-cp37-cp37m-win32.whl (172.1 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.5.2-cp37-cp37m-manylinux2014_x86_64.whl (289.3 kB view details)

Uploaded CPython 3.7m

feyn-1.5.2-cp37-cp37m-manylinux1_x86_64.whl (289.3 kB view details)

Uploaded CPython 3.7m

feyn-1.5.2-cp37-cp37m-macosx_10_15_x86_64.whl (173.5 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.5.2-cp37-cp37m-macosx_10_14_x86_64.whl (173.4 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.5.2-cp36-cp36m-win_amd64.whl (181.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.5.2-cp36-cp36m-win32.whl (177.3 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.5.2-cp36-cp36m-manylinux2014_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.6m

feyn-1.5.2-cp36-cp36m-manylinux1_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.6m

feyn-1.5.2-cp36-cp36m-macosx_10_15_x86_64.whl (173.5 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.5.2-cp36-cp36m-macosx_10_14_x86_64.whl (173.4 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 176.7 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c662fc2c46162d0cd59659309eede516a4f765327b161a751a3ec6b821b6cfbf
MD5 2e6c46d03380037c3a6b6c9ba9ad7cb9
BLAKE2b-256 7a76390a7f12f80f4cd28f3396f3aa75fc8ee29e71c6a36e50ffe4cec368beb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 172.4 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d72f16d75702772f8820ffcf6706e68869d3ad188689fb3849e2bbb84bf65d7d
MD5 63a00d926c92233de9f683d12a8942f9
BLAKE2b-256 1b14c454831c98995483b303527310dbb425c3bdfefd774b3adf8bc90c2ba5f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 290.3 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.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d09df2d0c303a51b086e2d53f03e1b2ccdcc9d446065b34b356fe917a8aee94a
MD5 b6ffeaa962e7e75bf2e1bc1045bc7998
BLAKE2b-256 3873750e088677d7a541c47d3bcea6f2211a8abd1808f55457c8dbfc28a70f5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 290.3 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.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5007ffd3d89ef10b388b620064623b1c8421fed112df21aca77eca8a19091597
MD5 2d03dad587fd29954f91b48bc495ecd3
BLAKE2b-256 19ad5c86640514a2cb7cfa33605f7e4d531b6968e019222038dbab0a34f37857

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.7 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.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e95efd57f37324a3a5fa0479a4e39ef0a90d699e6fd0d76a06ac4c51b12bb7ea
MD5 334d91b3ca5abdbb3da57b05cd32a441
BLAKE2b-256 5a3e111860d4d1561f4edf72c10465a2c6c0061b104abcd689bd448cacd0b26a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.6 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.2-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0dc13e1add1368d401884da42dbbd336f556f7ca861f86ef2ce0d863b9853b6a
MD5 9dcc4ff6170b906e23f05279b42a2359
BLAKE2b-256 7f73b7539f378dd2f61ebb9568aaa6d82fd23e2508ce1eb979a9bece893cde1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 176.6 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d821b3e55973321e2302a04446f985985a7c1ba48648ca6226d03eb6c1876801
MD5 66420522735db46355a06e9751a8e8cb
BLAKE2b-256 b1850a8fd501db811bdc9cdc1adefafedc2bf525e07e889c883bb404c8110678

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 172.3 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b29ca20fa27328d7489d679ecba1105db47838f7d61d2e010ec333d550613bdb
MD5 13495d5dc3fc1fabf3f4574cb61cb153
BLAKE2b-256 e311bd966bb2d88181e69d9263c14c95a7e96334a9fcfded146a1f263a35981e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 289.9 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.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a67c20ed2fb483d523d38c640c211b51ef71fddcb7d07fa575077ff3a0ff9ea
MD5 aea43507232aa908b7c13f20ff447815
BLAKE2b-256 ad32d1c1c4fb264a12d398278e906f25425938b6dae5f3998162efcf12bbc3b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 289.9 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.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 531855e8ae38f6aeab0034a0a27b0694961cb0bbfacf128c0298799f51f6d977
MD5 757e9466fbc90324730dd583c7bd930a
BLAKE2b-256 cd1b1323b338bd1a5dbcf70514b1420fd4fa080bc946d59e383a2cb66f8ac82e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.7 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.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3369e4dbfe7cab4518e6f0101401574bfb78c8420bdd8186d742ee93151d710b
MD5 080b7b0fdc44388904de86641b78075a
BLAKE2b-256 431985301ce70de6d09c23ded86d0151bc62c7fa17f46fdc3a1a7d6ff400f6a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.6 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.2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 216d983b97fd65ce625865bc0fc68304d4b3a3fda8e64ad21f47d08956feee86
MD5 e1be6a8e72fe3c44aeb3ba4241bcd41e
BLAKE2b-256 b5475b58241a6f9cbfbc729f1ea23a09324d015ad270e63a3ed5e4b82a16669e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 176.4 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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eb56216855060e012b994e70ef122d670f1af35dfcb179f651d1ee20818c0cb4
MD5 ec7fb09f6460d4dfa8a64d9419913245
BLAKE2b-256 43e8215487393066f6395959da9f2768dbe4ded6d5601caf42572e6d987f052d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 172.1 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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 807567fa1941847feaca8deef96587f8c72a62ceef62dba0277a5a80fbc1ad96
MD5 8d9379fd85a409e1e9dda5856bad4d8d
BLAKE2b-256 2e89e3d0563eabc53845e8bcbe38fa2cdcca28900789a40a03e975290ea620d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 289.3 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.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f128ac5989d9283035091c55939e2ed6398f348337d5aa994fc493936bfc75d
MD5 5f23c3a3adc43f55a10ab187cd08eaa1
BLAKE2b-256 0cce48b5ede23f41c8a2f6a401b8cd420c3954c91c24cb4241402ec00b339945

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 289.3 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.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 33f02ac271aa71472e86650d77696e4ee94db0ae2f32f539392db0fd5cafdf19
MD5 2bf8da3627f4f63bb90eb5de81038f4d
BLAKE2b-256 4d899ff2f408cb263dfb4836466f152b4499c42a7f70b959b453a15f762298b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.5 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.2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 487d99c8b8cb7a8ddea28d788c0c262335443f6872ac11f0dc9a867f951d0db8
MD5 91150dd45ea4a4a7d7844d0af86b67d1
BLAKE2b-256 038e6b97af5ce8feb2220b6c3fdb16b7177dad9df942af17715fb5c389da223d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.4 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.2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fe77c2748ea960964067d7b5a04a7bc12dc8085e489325f1763c7d02121b80d1
MD5 fd8f6eb26b2d678f28bb52f962678f37
BLAKE2b-256 14fec907b0bbac2d595ab0f83a0925e68566a4cee48a754ec2caa4bda5e1029a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 181.0 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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d1d2008562168688d717f104ac11bcb5673008a74ee920bb65e5ee9f70572084
MD5 f7dfb231a8bf18c00ee8d7174f6e4a5b
BLAKE2b-256 30c4aacda478e64d56e8e2a0f3acff8a52627ac98ee6db08d4a304dbd7c0b4e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 177.3 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.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 442facd7707a5e1925064ed3c9865e71d4bd538926713fdabf87151135017990
MD5 80eba616cbfbbee4f2194304f716a71a
BLAKE2b-256 7d5b9ac607061a9541fd05ab4cce1007800ecb15beb39d8afa34f96e70c663d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 282.8 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.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e87649318e276a96a4e15b39405b04f7f553807d6434d048d9d8df71002a1fc8
MD5 4dcf5a7448a2e8aa8f147a9bcf0fcde4
BLAKE2b-256 f5f85b3ece7c27ff249bbcbd56f15ea3fdc08a58543231525e6ac3a247d7f5fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 282.8 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.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1a7ef40abd335bdb91cb78f75ef7f548dbe3804d72700663bf147bc62e374c72
MD5 f9d44a8232ef935dd2b4d02d37656ccf
BLAKE2b-256 dbb1233a3e63c180568dd9c446f07f56175631cefbc437215e395e2cbd3ebb20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.5 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.2-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 599c7f83339422058083f8cb0fe16a813960dc98c3d949b79a70b2b53c9469a0
MD5 836a65a64034c5d68260dd199f18dcdd
BLAKE2b-256 f4ebcf7a5febd45503732bcb7088371f6a1e75274f069f3e357934f8b0b64863

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.2-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.4 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.2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8eb5a62e3c62a9fe5f422027a48c75d406b8f406f890c892b425f38f52234314
MD5 5041a0f9acf728c883df3c30eab20054
BLAKE2b-256 d5d6f917da88f5b1416a955d344a1c5b9ae159e50f8e9384f8a16aa4e30e83ba

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