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

Uploaded CPython 3.9Windows x86-64

feyn-1.6.1-cp39-cp39-win32.whl (185.0 kB view details)

Uploaded CPython 3.9Windows x86

feyn-1.6.1-cp39-cp39-manylinux2014_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.9

feyn-1.6.1-cp39-cp39-manylinux1_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.9

feyn-1.6.1-cp39-cp39-macosx_10_15_x86_64.whl (187.1 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

feyn-1.6.1-cp39-cp39-macosx_10_14_x86_64.whl (187.0 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

feyn-1.6.1-cp38-cp38-win_amd64.whl (188.9 kB view details)

Uploaded CPython 3.8Windows x86-64

feyn-1.6.1-cp38-cp38-win32.whl (184.9 kB view details)

Uploaded CPython 3.8Windows x86

feyn-1.6.1-cp38-cp38-manylinux2014_x86_64.whl (320.9 kB view details)

Uploaded CPython 3.8

feyn-1.6.1-cp38-cp38-manylinux1_x86_64.whl (320.9 kB view details)

Uploaded CPython 3.8

feyn-1.6.1-cp38-cp38-macosx_10_15_x86_64.whl (187.2 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

feyn-1.6.1-cp38-cp38-macosx_10_14_x86_64.whl (187.1 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

feyn-1.6.1-cp37-cp37m-win_amd64.whl (188.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

feyn-1.6.1-cp37-cp37m-win32.whl (184.8 kB view details)

Uploaded CPython 3.7mWindows x86

feyn-1.6.1-cp37-cp37m-manylinux2014_x86_64.whl (322.2 kB view details)

Uploaded CPython 3.7m

feyn-1.6.1-cp37-cp37m-manylinux1_x86_64.whl (322.2 kB view details)

Uploaded CPython 3.7m

feyn-1.6.1-cp37-cp37m-macosx_10_15_x86_64.whl (187.0 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

feyn-1.6.1-cp37-cp37m-macosx_10_14_x86_64.whl (186.9 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

feyn-1.6.1-cp36-cp36m-win_amd64.whl (193.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

feyn-1.6.1-cp36-cp36m-win32.whl (190.0 kB view details)

Uploaded CPython 3.6mWindows x86

feyn-1.6.1-cp36-cp36m-manylinux2014_x86_64.whl (315.3 kB view details)

Uploaded CPython 3.6m

feyn-1.6.1-cp36-cp36m-manylinux1_x86_64.whl (315.3 kB view details)

Uploaded CPython 3.6m

feyn-1.6.1-cp36-cp36m-macosx_10_15_x86_64.whl (187.0 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

feyn-1.6.1-cp36-cp36m-macosx_10_14_x86_64.whl (186.9 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 189.0 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a54a44e120423594be16cb32034f9c68ac801d07bfce019f946d8655d60efbe7
MD5 1f8985f3ccf455792be260831b4cccdc
BLAKE2b-256 f378ba7fe125b941157c5a42186fef5b881da09bae4e6505caf6a7a65e5c7c58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 185.0 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e4442eff9fef5d2d5d27832ed8797191eb7ac53f1a6601a164ae1f007bf85dbc
MD5 834640524f5e4ca6ea97675722d63aa1
BLAKE2b-256 c41d0f520a764e8883840b9326d7aaf0c3e13cf1ab65c9a97aaf8f31228a4ea2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 315.0 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.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 423b222e785a28045ff0c66aaca034ac741179903a65bb4310887b883173e993
MD5 5227864f3044919d14570dded42ff263
BLAKE2b-256 004b0c696f3413b5e7389cb0e0cb3a060bbcb8c3efa127fdb4803bf60666d53a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 315.0 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.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d1744fbb68c47e71076bcf72c2e3c5bf2eae59ef472e9ceb644d9354ab1e84ac
MD5 e7c9e88b2604987bf9a9274265f4b189
BLAKE2b-256 58c712bb00ca057e5f07c893dd7bc390bd6b1aaae59fd2b18a20bc439ea5efc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 187.1 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.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2fe29e7f8dca518c1037c5061ee0af05bc8d31f109e72e6406597e74ad5daa9f
MD5 411958b2a720ba1fc30e3e8b22f5fe4c
BLAKE2b-256 4d8a3a0df24b980585d580ce36638a9b0695f94b30189e04071da7a5bcaf28c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 187.0 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.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a48e0ff8a8ede40b27d228f95818c0df7dd808da062f544364fcc2ec9549bcc4
MD5 e07a8a3b2ae0302bc14c0ec57c6431b3
BLAKE2b-256 d9db6f13ade432f0e4e253ea3317562fa3de0aef1d6d341d47f04dc3493491e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 188.9 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ca0813b255a01084f7b6084578e40d3291545357c55e5f54a339fca04526d3e
MD5 d0bc1e476de2b15b62e2d1016b9d3bc8
BLAKE2b-256 a0279d34a0b6991de8fbf6baa037278f5045d87a8a56d8a1079da141c873040a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 184.9 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9795e0f8d578fe11d0cdcaffa776dc24864667058f7b706742b60e94d6f616a3
MD5 41664b0d31d25d61f8834875d7bd27b1
BLAKE2b-256 1268f2476ab76284688f2c89df3aac8fefcd1d1589f7e07474c2a9a122c91e24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 320.9 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.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 863ea2219b4b934c9204fb8774bbdaae8ba64e4d6ac684ccc9ed829ecd5786e7
MD5 33be1072633f3b8aebfb7809de45622a
BLAKE2b-256 d3208dea5b3e1943a64bbc98fe40ac1ec18be0675585041f00cffaadccf3bb25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 320.9 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.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f375bcf9840ba3991f926e1259210c854b8092c06bafc28d15f03f406b9c2b83
MD5 dea5c01b39aeab858a434a89b9d4b04d
BLAKE2b-256 64264f17e9a3c6b8377c9359773c027ad78d2f6572c9b01d5463987da0e10cfb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 187.2 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.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7cf7f73b64bfff19dba4f95304fad517c816e5e8b47749dbdad1c879f0267528
MD5 5deef5abac59f09a3828521dc4686f49
BLAKE2b-256 4d8fd110b689b31f742b4827942093aae2dcdcf55f8331d3ef153a979d995dd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 187.1 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.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 decac32090ff160b46e3ab86df65f5ede337bd74ab089fd0ad08c96d2a847d3b
MD5 decff9ba1447dff307e16f5a9a179791
BLAKE2b-256 a8984b4cbb711ad9c6f173c58f4e40789ec15d79dc1fe2d558f2e6c62ef947a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 188.7 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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4af8172d9f28b12297ec9e0935136129097eb07d5eb9b7784484f550b4484c4b
MD5 998d7a639a4e0d74cf438137188693ab
BLAKE2b-256 0f9eadb29e562072f337bacca568298574bec2a6b69c614c65a39f19e289edc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 184.8 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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 79761419261858c9ec0eab5829e12a23dbb53432644ad9151c62b852fb0271a7
MD5 27da09f1f9f180b2004c881a6c65a462
BLAKE2b-256 7b0474e3b5bb1d955a37e100bf2a87b5e281e86d84123ed63e27ae3075777be2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 322.2 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.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07d4fa0d010c90ebde35234eb1fe25bf25c8e9661c5b7bbd1d16611bc8c7f466
MD5 5a008ed7caf1342b6b9db32bf55bfe36
BLAKE2b-256 b61341bb898730d89ce7da54913996ba67648ddcf5a916af75ce0e5fa0fd1ee2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 322.2 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.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 28b929626b1c414feb2e8c0be5302017e37159ae116da2618efbf3de8a32342e
MD5 f224d4c1e468910efc1650a3038f49bd
BLAKE2b-256 010d0781d38edeed6719ce8fc63d685c861edcad8681508a0455734d278687c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 187.0 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.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d75bfed6201acd8e398c705d7d03431319f8a52655bca0e76f303b418ad6a5a0
MD5 fb717ec1a2389e2dfee5438125e24598
BLAKE2b-256 3fa19965dbf8860b575495d0a689e8e31fd97f144805640c796ed8c0b7e7981e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 186.9 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.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4202344fdab713d76c39c95afdcb2ab8a1ab96fb6a5866848e03178510f54640
MD5 618894127caa20ef0259c77411176cae
BLAKE2b-256 53f6a9835a861440522e8c16d236a9ff36bfc16be554a3ef45f867eb59911608

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 193.3 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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9475db8720c935b418964a084c7f6ec68417451ff62415a4ba65074f133a843f
MD5 1f84c28e31e3076c4affef714da67db7
BLAKE2b-256 edd3a74e73faf578711b03961d6a2aed8b00d0cbab416ab43a15afc6deccb81e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 190.0 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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2461fa2e963e018741fa9567bebe5b9357a4d6304c4317acbe9b0aa3e2bcb347
MD5 58e665f69c6b785dbc2004be8318ccaa
BLAKE2b-256 40b47079cc2ab021f0d0eba2481bfb3b85e4113bd1bba9b5cc751bf6b55bfa32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 315.3 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.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c1850137dbef51550fdd1687c68d9d641baf5a52b0f6278933a6228377b5d2e
MD5 f82ee32b73a078ac69f820620d66b37d
BLAKE2b-256 44e549c998d4b8dee750142e8428542697ac0369357a6e07e8be43e65638197d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 315.3 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.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 882b662ab615069fde7c3c314de5378ac5f36c60d41e053873b54025ff5c1b00
MD5 5da8846f6bbfa5e31709f531bd6b8c8d
BLAKE2b-256 0956308693fe667bdfdd117b8c5b8d3531bf7d1c3dc3301d5c3bc3d95df2a2a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 187.0 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.1-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b8d8ca103494b2e486cae14b1c2ded38ff45d972c5cb23aec2aabff2867180ac
MD5 8588a164097705868de744fd0780753e
BLAKE2b-256 6f78ea5dfc96367767073a3a4c4a0887e91eb47712b240b3a995d85cd016b294

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 186.9 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.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a7a648b17fa482d43b242fba5fc400fd7823554006bbe88f48597c0e563b06c0
MD5 78d683ebe873948c426f209800e7d60f
BLAKE2b-256 b008122566b6ee256c4f6402b0423423fc0d954cf4bce788d08658b49dd6b3d5

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