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

Uploaded CPython 3.9Windows x86-64

feyn-1.5.5-cp39-cp39-win32.whl (182.6 kB view details)

Uploaded CPython 3.9Windows x86

feyn-1.5.5-cp39-cp39-manylinux2014_x86_64.whl (312.6 kB view details)

Uploaded CPython 3.9

feyn-1.5.5-cp39-cp39-manylinux1_x86_64.whl (312.5 kB view details)

Uploaded CPython 3.9

feyn-1.5.5-cp39-cp39-macosx_10_15_x86_64.whl (184.7 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

feyn-1.5.5-cp39-cp39-macosx_10_14_x86_64.whl (184.6 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

feyn-1.5.5-cp38-cp38-win_amd64.whl (186.5 kB view details)

Uploaded CPython 3.8Windows x86-64

feyn-1.5.5-cp38-cp38-win32.whl (182.5 kB view details)

Uploaded CPython 3.8Windows x86

feyn-1.5.5-cp38-cp38-manylinux2014_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.8

feyn-1.5.5-cp38-cp38-manylinux1_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.8

feyn-1.5.5-cp38-cp38-macosx_10_15_x86_64.whl (184.7 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

feyn-1.5.5-cp38-cp38-macosx_10_14_x86_64.whl (184.6 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

feyn-1.5.5-cp37-cp37m-win_amd64.whl (186.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

feyn-1.5.5-cp37-cp37m-win32.whl (182.4 kB view details)

Uploaded CPython 3.7mWindows x86

feyn-1.5.5-cp37-cp37m-manylinux2014_x86_64.whl (319.7 kB view details)

Uploaded CPython 3.7m

feyn-1.5.5-cp37-cp37m-manylinux1_x86_64.whl (319.7 kB view details)

Uploaded CPython 3.7m

feyn-1.5.5-cp37-cp37m-macosx_10_15_x86_64.whl (184.6 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

feyn-1.5.5-cp37-cp37m-macosx_10_14_x86_64.whl (184.5 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

feyn-1.5.5-cp36-cp36m-win_amd64.whl (190.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

feyn-1.5.5-cp36-cp36m-win32.whl (187.5 kB view details)

Uploaded CPython 3.6mWindows x86

feyn-1.5.5-cp36-cp36m-manylinux2014_x86_64.whl (312.9 kB view details)

Uploaded CPython 3.6m

feyn-1.5.5-cp36-cp36m-manylinux1_x86_64.whl (312.9 kB view details)

Uploaded CPython 3.6m

feyn-1.5.5-cp36-cp36m-macosx_10_15_x86_64.whl (184.6 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

feyn-1.5.5-cp36-cp36m-macosx_10_14_x86_64.whl (184.5 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 186.6 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.5.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2e1eb27d97a3cee51ae6c0c69782c3ecf7fe2b5a1e29d73ef973c023c1d7481e
MD5 c700c743b350ab4e2eced02c292022bf
BLAKE2b-256 6e822f514db17f20193bd349c07e906d142911b009d53ec44eefb71720e22102

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 182.6 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.5.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6d47805ddd02da43808ecfe93bb834dc920bf9e2414ceb6b2edb8697ed20e066
MD5 269d9e1564555d8f367129a2628649bb
BLAKE2b-256 9b1733772aaee788ded76f8820312881bc192234c04dee9d384dc68555e66a80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 312.6 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.5.5-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd5f29fca0eec9adee153a1131bdec8c778c634fcf348c1bd5d9413bcf37dacd
MD5 4b7d3288864e52881c0269b0ad5a0fc5
BLAKE2b-256 64b0eb9b4594e4b77e2ab5464c7daeba5e80f5f0773dd89a94ac6614b2227902

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 312.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.5.5-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 37164b07267c452f1d117a9b14f78c9259eece18c29c1e8b9cc7d16c31c7cb39
MD5 0d6f16c74ce4c2ba54cbfc032e193fb7
BLAKE2b-256 897e9a7355291bea3c295e7f948d3e9c07086979f8ce8afffc8e7d9e37e9e4a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 184.7 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.5.5-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 97143d89e08355bac399da26d7aac92b06accf0fba36969b469b60240d419f52
MD5 60caf9b724339499cb7bc8dfa7e38ded
BLAKE2b-256 e6a2b2140a5af58235a2132b0edbba04a169e88bfa200a3ab2f75b492409679d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 184.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.5.5-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4819a7d804f3b96e97d522b08e5bdba99bb5b56b22a5209da7455511a5ecec01
MD5 ff458e8fdd763619051bd0b77595844b
BLAKE2b-256 2b8ae0650ff121f09c2d0e98c43e67c39e755c551127928a6866c809f9ca52dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 186.5 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.5.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ddea5d2c4aa9fa6c7119acab10946476fcab76e89bc2079a45de46cd23213411
MD5 c1a7748772ff5f526e4e09eea58341b7
BLAKE2b-256 fb1b81a2737ccbc8d6520d1379a7ae14d1b673bf9ffe91ad575f4ac1dfa9703e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 182.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.5.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 07be7a497f1a32dc85cbcf430b974572ccfcdf0a93ae1e80d0e3aba6d215ce1e
MD5 ebe0669b8a18f421ece9a08e2dfea2a1
BLAKE2b-256 b9d4256dbf358d6242f9501c716bd68a2685ff8a4c39348962edf962887ecfa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 318.5 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.5.5-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de95b378cc17ada7070f381dbc8b822fb96ba7295ed4df32b9a8fa4e830975d4
MD5 674285b379339c4c7e941be10a4af305
BLAKE2b-256 5406ed033c0dd5f738d12dfff2d2a73aa6da7ee8316c8c2b242531d55ef54ea3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 318.5 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.5.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 05086e345d4bcad13ac076908a8dc8f833193f8c222bfb3eab12cd33ed99c233
MD5 6243324e668dd44d719d10e630f91c35
BLAKE2b-256 c85244765605c496988886c0d605b3e11a5f108882d10a958c1b7807f1102e22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 184.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.5.5-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 65b82e43bc1785518bbc02df0f3928f6f7d1615d67f995fd801b42c6233b0f8e
MD5 29fd0a8645ca784f30d6d87cc98c7049
BLAKE2b-256 670763006d8f36f26620804ffbbb9b2ae7c73aa79e3f8f86d72b802bbaf89be3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 184.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.5.5-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7dfd27bf679104f1ff66074b12a01c8eedd8744251285b99dea6d0b16cc5ecf7
MD5 bb2b6afa24e118e215553c1360ba0379
BLAKE2b-256 c2542071211d5fb7558d317c325fa7a9470e6cddb2843b2220b4ffefc175b7de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 186.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.5.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d19a017bad3f4ee89cf5a78f202e07b95dec41dde47839cb2964c4fb9dcdc5f0
MD5 cd1784d91de0349aff324d5d0ddd0747
BLAKE2b-256 a858a4be0b593253e55757239872002e0d72b764660a898861ff06815e3d211a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 182.4 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.5.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 aeaff5b96681fa33681692920c88d5aa8df5c19f385c1bc72caa938f7c8e649c
MD5 f9b05e6b368d5c75e62d93f97b9191fd
BLAKE2b-256 c73fae95bd0871d4f9f073ff093b543ea13c8a0e8c57eca6bc3f0b6350b20944

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 319.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.5.5-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7ce37c105e60265daa07946506824e880bbc2a34004b08bed1de269f21ae4f9
MD5 76ede2f8c685b09a4e2dc173369b7e74
BLAKE2b-256 5e98cf663e0106fef1428a57cba2005b67060e1d59087ea4322e245219385c30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 319.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.5.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 37d547ba6605ccba66659872e16f7c51d49ce89c10502d4fb53a6f69ed963b93
MD5 cff3709e2922d045d94617edf6934589
BLAKE2b-256 c18d73f01fd469aad0fb886b4851a300ba602320a37c3475ba329cb8aae2700d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 184.6 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.5.5-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c211d9637cde6e9575b6544db10b8f39b7bbd79864875ec1e8ede5f1a5338b0
MD5 aa15c65562daa1572564cd0d8b0eea27
BLAKE2b-256 0271f241abce7d770446c1e2ccd3a54a1e8f240a4640a07321d121ffa961973a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 184.5 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.5.5-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2a2278a7ddb30d3ce4cc8572cfa1003a484df20de775e74422c1d680c3fdd8fb
MD5 dc94b8d8f82e6688aca3bac0e57de7bb
BLAKE2b-256 ab5373987edf7d91f7aeef29f0dcbc68fa48cd869508bf6593023c8e8c6a6167

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 190.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.5.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 835f0adda0bf9fd017e1742637f2d6afbe904a5e429fada6db0db63ab3b94e76
MD5 447fde778871930fda0eb589d162a635
BLAKE2b-256 fcb7c52f415af5bf068f5fdf5fdc5efde02bb3c2729d133f17937dd302e78a24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 187.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.5.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 758072882dd991ef5ee046ac87b2e41602c9f47e8f8118a1164f6fe950664e4f
MD5 acc455bcd3b6fada28945749ba4f5157
BLAKE2b-256 1352f31c270ee1e7daa5eb4a6575a57a6daf53d76486f4ae67ca1207197175be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 312.9 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.5.5-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdf3eea797164969ceca80bafd638a6397e0d967045a525f21817743a6a46ce9
MD5 e3e147ea144e009bdb7828402b48c258
BLAKE2b-256 67c4a6b1191407fa6f394c48a2f6bb03e828b503189e5e490f99637d1455da99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 312.9 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.5.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0c61c45e13e705cb5cbd24bb6b355176fb08cb8688bb3d81485340cdefebd04a
MD5 ca95d7371ad02fa6547d25a6c3295764
BLAKE2b-256 ad03142a66922014ab2120e31b19996a143062eebd5f8a03828d3b32b45b2f14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 184.6 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.5.5-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 31dde400d5f5a8a5d51b604dc11c6c2f07c0999ba93445633e1410b99c9cd8f5
MD5 843f179323b6aa186a2a731c190d1d60
BLAKE2b-256 9a87ef2bfb1a139aa30d6eda3dd94ae82bcb410c564e402f070283d2096f38a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.5-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 184.5 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.5.5-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8e7daa61014908ee442bdd3842d736b0c8765c89454f35f9abbdf9f3965ede1e
MD5 13729a4c32b765fe575b98f8b37e7330
BLAKE2b-256 010a3d769bb41fe23f73c569bec84e07fb68259fec00914fddfed5c435698c63

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