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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

feyn-1.4.4-cp39-cp39-manylinux1_x86_64.whl (273.4 kB view details)

Uploaded CPython 3.9

feyn-1.4.4-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.4-cp39-cp39-macosx_10_14_x86_64.whl (154.7 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

feyn-1.4.4-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.4-cp38-cp38-macosx_10_14_x86_64.whl (154.7 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.4.4-cp37-cp37m-win_amd64.whl (157.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.4.4-cp37-cp37m-win32.whl (153.4 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

feyn-1.4.4-cp37-cp37m-macosx_10_15_x86_64.whl (154.6 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.4.4-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.4-cp36-cp36m-win_amd64.whl (162.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.4.4-cp36-cp36m-win32.whl (158.6 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.4.4-cp36-cp36m-manylinux2014_x86_64.whl (266.1 kB view details)

Uploaded CPython 3.6m

feyn-1.4.4-cp36-cp36m-manylinux1_x86_64.whl (266.1 kB view details)

Uploaded CPython 3.6m

feyn-1.4.4-cp36-cp36m-macosx_10_15_x86_64.whl (154.6 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.4.4-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.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: feyn-1.4.4-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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 33120e6db8979063275166701fb308c51572c918ef48565f944a7ef9407900a8
MD5 8e15811c801cdf4b5bc4bb1b524c49a1
BLAKE2b-256 63d746df6b35982a44de8139005e117777c64fae7007936ef9e13143ad9236f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c75123cff85e30c1c3efc2b2e7d3d68e54d98fb41908134a25c2a4d90e6e9090
MD5 2c4f9c5f997d30c0f7b7b88861f79698
BLAKE2b-256 da2c80077314079107ded5478c9917e98f482bf40db15227ab1077027e8c6cf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f96c7672de8b99fccad37b5ee2a4f9d03b83c337c3af4b0d7bb571597a65835
MD5 6d3217f5ee4ca59ba9d116b72c62172c
BLAKE2b-256 f3390edfe8148875f14faf8f2e348c4238bc6a9e6ca7ff69d35a6f349004f362

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 273.4 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.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c13bf635ee9a7edad2c9c32de3859623acd556233c1dc9bca099221fa7390d2c
MD5 2aab9658b4bff08a737cc8fefeca0ca4
BLAKE2b-256 06bceac5331a48a9f0a7b05c9bd12aa74247cf69675c89ed08a706925bfb1320

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fc29d97f47a9b769c720bca69b57cd3aeb0b96569adfb534c521cfe5cf961c9d
MD5 d64fb05d5deea9fe42225e176c7c2574
BLAKE2b-256 b0235dc7715bd5cab0a7e6d03346f1b7da1354e0938588ee2dc194dea0fb7615

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 154.7 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.4-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 885736c7cf1df69ccf1daf854b478074a6caecb4b3caed168c020e0f4243e314
MD5 09a309e360e5abd11c228a4f30c04aa0
BLAKE2b-256 2210998c64d8364c9e89ee475ec1acc21043371ed58c8a2467188815bdd15b33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 74da96cc582e4f373cf06978048f12689b769dc44be468c4f1d3474e4c223a72
MD5 63ee6bd53403a1f1bcc50ef9b375011a
BLAKE2b-256 8fbce3a9b92164d6de4bcb28154674f1f793374bcb80312649937a7fd7968eea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 137cb56fa242bbdcd089ecdf680866f7aca1d31393b0ab90fcb7e8df38482403
MD5 b0f8a8c9862b3dcc5d09ffc442742bf5
BLAKE2b-256 80e783bb9d0c87034745d6506b070973855615bd3f4dc8a3f3cf4321b6306348

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34f82ae75ad33920f8de4c64bc7dc03007be49c904c3e14a1a9602d56683dca3
MD5 7e67032ff40a994a0245d926f675d560
BLAKE2b-256 30e4315e46c99da3c116cc88cf0dc5a950de1a09b383ae24504effe0a2ba91a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 59bd29faa018170588e7299dc798b4bec7b716e28fb984c5227ca2303ccd6202
MD5 96d7991f32a31f7fbfd8612858e3a189
BLAKE2b-256 6b49e310b7d17882f0b35103beb090b40800e1630be9daebfe31fcb008054451

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 26ee13174a680f50effb122da0e2105db51de828a2e309205e0eb608579e8ef7
MD5 97497c7db8fb345c9583a7435fff7d5d
BLAKE2b-256 3279d3b37afaa27399b625086b63184d93a2d4d1f886f7149a1d732cee855d0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 154.7 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.4-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 296a0287326a39a6c688b23cdf88d9a8306d5349ac789006bc7370dc8599e3cf
MD5 557ae5b66f77baaa8a19120205deffbd
BLAKE2b-256 8f6d8e8d0096df1c88408c08c20aa21e0823933dc60c25c09e7426e3ee493e3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 157.8 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.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2bed0d9d00fa0d3aab9fdc35487ac6a55eca238d0ba66883c4cc8f9572b11790
MD5 43ca5265d802cae3862ed618acdf62a7
BLAKE2b-256 4737ba28c96f24d2970d66ffb449c3cdfb137eb4b360382c3c4def92af7b770f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 153.4 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.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bbf6fecce666ca29793541f5d0a1c84137860f5ab6dccad785248fd56f414479
MD5 05e3fccb5026eee9f804d95aa8676272
BLAKE2b-256 7f2649a419f9ed0e05c37617456e8875c1a6d7d66540e987e97e83cd17f7a59c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b614ae147706d7a89306347b8e21b7602c001159fd2e0cac5d8c8a6757e798f
MD5 9beedd7ab377160bc042b2bf3375d9af
BLAKE2b-256 c5bcd1e176ec57d0ff9b868e70ba91762d57f976fa8fc2d7fbcc7c630db752ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2fe32b46c73798bdef82eaa216ebe38b23de546f60c2f4e403be208de31f2784
MD5 2656f05d058d46a1f25134c735b0d410
BLAKE2b-256 e39531d4293db06aea18b77e1e44264dcd0612fa08403e0173cd2f9e4dad23de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 154.6 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.4-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2067e77fb12868c68d0c1eca20ce94c3ca85a0a46b481297f5fb68ce81e0dd6a
MD5 36e50f10fe72511974946313c92f26b6
BLAKE2b-256 8973c59ca777eef8b9adef548971ae05cca2d61dc7644934771f41b799c7446b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 de0384c0fb75025215db334bb6061a2ff5ea077b8694eacd30c1048246b850ed
MD5 65a431fe462c411f6e8ccd9786bb876f
BLAKE2b-256 5b287cc7f75db4feb8ccc24c1d9cdb8c18e402c8a6b74c1e85c3077ceb8fa59e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 48d8baa3a68e60821dd84ce76d70e1ed1fcf9e54d97cd7dbbf2f4a8e9e50e291
MD5 770158d6eb75d20c202459f410288035
BLAKE2b-256 1342cd818fef89b571a908873ccf579e46f62cc376adc985a50db836b4009828

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 158.6 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.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a17e4d0c9983bce0caca65076d6c3a46b185539baeaf67063b98344b081af09f
MD5 78162ee9ba4d34871781036df0d1cce9
BLAKE2b-256 f2543380fba3287bd59cf662c0dcfb9968f08c770b5c27926d712c9825d12c60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 266.1 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.4-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99345c9739b27bcd1fbb0659edc624e27fe572b4968d472692ddec652501b729
MD5 95075bbdfc6aaa6ce801d1a00797af03
BLAKE2b-256 423712d315f561f6b09f3bcbd1dbef03fbafaf04a31656b363216953778ba693

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 266.1 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.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 492c453a42a85bad9bafefaf047f49c54ea299f7b509b0007b4c1af667139dfd
MD5 7e2839d4b9f797bdf30530c58e442bcf
BLAKE2b-256 763b1d1a5affca95386d22f0af4b5e33ce5f253d321881c04fab25a42ce8b162

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 154.6 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.4-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 42ff2297442cf0b2ea2284252d54d0bf0677167599d78b1bebcadd38af84faa7
MD5 e04141e348b1e2978f8310040a4ddeef
BLAKE2b-256 0aba84898eb7e6be42b5677e7c13162a4b2e06e0fba8ab33b2393b8a6a2c5bcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.4-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.4-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 aa4ddd7f003bc52d189a71c85b82b541c6211a548017b27beb833bb604bcaea0
MD5 62291d66a48fd14fef2e83a14180f4c9
BLAKE2b-256 3a3c2a4e5945883ca78c60fc44fa574a70c292ae251d654e859f47be693f82bb

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