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

Uploaded CPython 3.9 Windows x86-64

feyn-1.4.5-cp39-cp39-win32.whl (153.8 kB view details)

Uploaded CPython 3.9 Windows x86

feyn-1.4.5-cp39-cp39-manylinux2014_x86_64.whl (273.5 kB view details)

Uploaded CPython 3.9

feyn-1.4.5-cp39-cp39-manylinux1_x86_64.whl (273.5 kB view details)

Uploaded CPython 3.9

feyn-1.4.5-cp39-cp39-macosx_10_15_x86_64.whl (154.8 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

feyn-1.4.5-cp39-cp39-macosx_10_14_x86_64.whl (154.8 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

feyn-1.4.5-cp38-cp38-win_amd64.whl (158.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.4.5-cp38-cp38-win32.whl (153.7 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.4.5-cp38-cp38-manylinux2014_x86_64.whl (273.1 kB view details)

Uploaded CPython 3.8

feyn-1.4.5-cp38-cp38-manylinux1_x86_64.whl (273.1 kB view details)

Uploaded CPython 3.8

feyn-1.4.5-cp38-cp38-macosx_10_15_x86_64.whl (154.8 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.4.5-cp38-cp38-macosx_10_14_x86_64.whl (154.8 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.4.5-cp37-cp37m-win_amd64.whl (157.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.4.5-cp37-cp37m-win32.whl (153.5 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.4.5-cp37-cp37m-manylinux2014_x86_64.whl (273.0 kB view details)

Uploaded CPython 3.7m

feyn-1.4.5-cp37-cp37m-manylinux1_x86_64.whl (273.0 kB view details)

Uploaded CPython 3.7m

feyn-1.4.5-cp37-cp37m-macosx_10_15_x86_64.whl (154.7 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.4.5-cp37-cp37m-macosx_10_14_x86_64.whl (154.6 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.4.5-cp36-cp36m-win_amd64.whl (162.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.4.5-cp36-cp36m-win32.whl (158.7 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.4.5-cp36-cp36m-manylinux2014_x86_64.whl (266.2 kB view details)

Uploaded CPython 3.6m

feyn-1.4.5-cp36-cp36m-manylinux1_x86_64.whl (266.2 kB view details)

Uploaded CPython 3.6m

feyn-1.4.5-cp36-cp36m-macosx_10_15_x86_64.whl (154.7 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.4.5-cp36-cp36m-macosx_10_14_x86_64.whl (154.6 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 158.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 68fbeed90adca58e83180fe2f7546bef76005dbbe53fbc603958fa04f8c8875a
MD5 83476080ce398d2d1fbb0b070409bff9
BLAKE2b-256 909400c6c628b608dbdab7ba747a4a8e791656a416f529a5234abc2dbbfd1dbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 153.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 19446ff8146ea82732f88319d14e944fee3d84d057fd01d9725adf7ea936207d
MD5 4b53cfbf7f7a218f44850bd4eba617ac
BLAKE2b-256 4755539a5af51f0e4bd1a7097801e6273cf769836a0a8bcddd0ba4305e37f80a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 273.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62ad1b7a7abb2be1b12e3054e9140357470b443e1fcd1785de725c64f4e0cd56
MD5 341624db02dd6bee08e6861ed1676573
BLAKE2b-256 ccad1fd1b0ff8460fb828e9f3d2267a4dce40136a057bbbb92b5f96c1d52697b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 273.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e2f1b2f05d21474c37cebcb7f0033eb37eea65289a72e0f137c66af0365f486d
MD5 67e3804e54415f64e894fbaff67ff95c
BLAKE2b-256 a12a67c5e937431a54671970ebce88aff09f4134ed14335804f0510538b01e1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 154.8 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 95455dc853a623760d5363c44f2445c48e6b7f02007b80ca007a160ea0019267
MD5 e9ae3705e36ede1cba55ef13c450f9fc
BLAKE2b-256 17fc1aaef0eb9cba2866e48db85aa55860ca936687d3d938bdb988ea991d328f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 154.8 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7c3f7de9d4f03416d8e6029efa1e345f319f99fd2f2ae6fb1e3dd0b627ace5a3
MD5 47d131a80b4818b20631a09745bf29e9
BLAKE2b-256 5e68cb7bd1090e303c1e883255734a8a2c9f0bf7dfb870f52f344b83251bf7ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 158.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c24fcaafdba86ec6c1aea0b1e9cee72a928bee59c3739b17639ff343f247adcf
MD5 370636cfae09917ba30b8ac98097e422
BLAKE2b-256 09a15ce273dd9e78779d0cf363e59e9e5fdc3da84bcae7e9ae2972c25e39f23f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 83a1c01407a8f70ca506aba1310907c2623320a39d29a2296ef77b53064d90ac
MD5 4172ae61693e2dcf8d4b5c2e96b43777
BLAKE2b-256 59877b1b8b94621c6343f1faca192538f1b97286fb9ba7066b854da96ca72c60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 273.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 631fbc12b8428edb8fd64bda8e1cfa97c20262a981be5b7fcb0ee7f3c528fbbf
MD5 b6fa7432f78050d0420dedec16d3c3a6
BLAKE2b-256 ab7a1d0a22655a1d1274013be9f3fdca87d51d06583910ca03570aae042f6a51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 273.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 17493dede836ea1b64058c5474b5c15b84b2bbe3470489861a14a81c5dd93b69
MD5 1b7b99cc2cc879a7fd5a22c1857a507c
BLAKE2b-256 3ecf384f8784086497278fdc700c44384241ebb8ff1c9b0d99f8dec2387a1aa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 154.8 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4d4a50780b3e5d86973c9ba0a2e326d1738c56412e1d46de3f44c54df3b7a6e2
MD5 f5d17a5688b9de1ff4efcfe34e752399
BLAKE2b-256 c766ada8d1b25ad1c49f6d335e952b75f23c423e244ea41bffd519881389e621

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 154.8 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f21fcbe821cb8303c0a93d8eb99adec9b80979c0e1bc798ece39bf054ab3a2bf
MD5 0badd7f6d59079761462f6c68f4dcf1d
BLAKE2b-256 d8f2048481d570c35b3bc4c1fe8ac6c73413cf6df2690214c116fc6d964c0133

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 157.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 77c04a063d3172834ce889e79b95e48b3cd9a3804d3290f6d27ef1f370753bd6
MD5 a87363c87146dbc1d1d730b60ea1c8eb
BLAKE2b-256 7ced2ac7eb4c3e0adb4a34be74a425dacbec662202b6a8149c482c3e09cc53c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1f4ec13402eb1ee85638d5ddf3e49fa041c83a577d43a58fb075be047872ed45
MD5 ac91cfd47a8349ae013d747309b94852
BLAKE2b-256 b7e15adc67c9a4ddb714afa348aca4c4b9f2925c2598eb4ff251fd05269a13a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 273.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2645ddac71db41ea4eb88bf1f261b14e7fda3f72c9203a9d57583858fc9004c9
MD5 c96738684352cd056b5b4cde0e70d4e4
BLAKE2b-256 1a9e670cccb366ccfa26946559836f968195a2cac96ce162e51b87983f72ed7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 273.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c748570fb8d71c22337d79ff263db6fe17a8a9146bccd991967d14d93400534d
MD5 2a22aa5c32fbe264e9407027473a6a65
BLAKE2b-256 f71a7e8fcf4e70102741cdb9a26b96f0c7757a43a4bf476e645942c53ffe9a95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 154.7 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3b832371a35ee9e5525f8d46062dbea6c393709d45f791af5803a61ff9be091e
MD5 ece0d043e1f7593edf0cecef7089f160
BLAKE2b-256 fd02af5f528a82593a7ea8ca6468d834ed82253d0f0547dfa4961546110ae2b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 154.6 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ee55818f0b93ec3a8af689c901b9d84dc87e846600e146735f2ac538a95688b3
MD5 6b4006c3fef7735c0c80b51db364c78c
BLAKE2b-256 d39469e4536338ce87eae7e005500e3f9c9193fc2f824aec5097a5ceb420cae1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 59fbf47b31c4615d89f73dace848c0ecc84d10b519fefb97ea296fe6e09c517a
MD5 23f969e6a8f0ff31c7facadb5abd3df4
BLAKE2b-256 0d04bc990af62f6145d14259281f5fa5e8e059041f714354a9cf53acf0029535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 158.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3ac03bb7c24d8ff17898ae254414f5216ba6e732139bd260c77eb46433ff66de
MD5 f8d0f6a34328347ac4b1f345c7887511
BLAKE2b-256 a28ea4287236fec87c0b3fb2e00083291b1e336d8015203a3906491fc26c66cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 266.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5704534390fe9851e1ecbac5dd38ee87c0df31db491892666e83b03c1b25743d
MD5 63184889564cb9c166e1c030a42747a8
BLAKE2b-256 6fc556c5a226fd945eaf701af96a7db07bc68623af57263b5a943766a2d266bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 266.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ecfd1880578bc427ae902526eb3ea295132eddbc61befb60c84403c5b50d0b3b
MD5 6ca5c90302ea0c19437bb7ff901ab772
BLAKE2b-256 670c9d8f04b2a0c59090186c802bdd25c9b7fb6a28cfd71beaab52ba52d5a3a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 154.7 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 61be245affc891798e4b6e1ad56292f0b944fa60c19c6d5d55a150cb6c9a3bd9
MD5 b3c375a8282e54cb61a74a9086cf39a7
BLAKE2b-256 d12367b7f25b2156bd40ceea921c6e8b4ff49e7f6e483e659892c388bd62fe15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.5-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 154.6 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.8

File hashes

Hashes for feyn-1.4.5-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c49465449530259c43bc5531f350537ac425dd9e6aaf683cf6278cd9d1b2e9ee
MD5 6063b4ca1540d0167271e9a9dc5d2b56
BLAKE2b-256 e3955cbf5d6b9e3b15fc4f35a15556b308c233671cb4d48371a29af7ddefeda1

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