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

Uploaded CPython 3.9Windows x86-64

feyn-1.4.9-cp39-cp39-win32.whl (171.9 kB view details)

Uploaded CPython 3.9Windows x86

feyn-1.4.9-cp39-cp39-manylinux2014_x86_64.whl (289.2 kB view details)

Uploaded CPython 3.9

feyn-1.4.9-cp39-cp39-manylinux1_x86_64.whl (289.2 kB view details)

Uploaded CPython 3.9

feyn-1.4.9-cp39-cp39-macosx_10_15_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

feyn-1.4.9-cp39-cp39-macosx_10_14_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

feyn-1.4.9-cp38-cp38-win_amd64.whl (176.1 kB view details)

Uploaded CPython 3.8Windows x86-64

feyn-1.4.9-cp38-cp38-win32.whl (171.8 kB view details)

Uploaded CPython 3.8Windows x86

feyn-1.4.9-cp38-cp38-manylinux2014_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.8

feyn-1.4.9-cp38-cp38-manylinux1_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.8

feyn-1.4.9-cp38-cp38-macosx_10_15_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

feyn-1.4.9-cp38-cp38-macosx_10_14_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

feyn-1.4.9-cp37-cp37m-win_amd64.whl (175.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

feyn-1.4.9-cp37-cp37m-win32.whl (171.6 kB view details)

Uploaded CPython 3.7mWindows x86

feyn-1.4.9-cp37-cp37m-manylinux2014_x86_64.whl (288.6 kB view details)

Uploaded CPython 3.7m

feyn-1.4.9-cp37-cp37m-manylinux1_x86_64.whl (288.6 kB view details)

Uploaded CPython 3.7m

feyn-1.4.9-cp37-cp37m-macosx_10_15_x86_64.whl (173.0 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

feyn-1.4.9-cp37-cp37m-macosx_10_14_x86_64.whl (172.9 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

feyn-1.4.9-cp36-cp36m-win_amd64.whl (180.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

feyn-1.4.9-cp36-cp36m-win32.whl (176.8 kB view details)

Uploaded CPython 3.6mWindows x86

feyn-1.4.9-cp36-cp36m-manylinux2014_x86_64.whl (282.1 kB view details)

Uploaded CPython 3.6m

feyn-1.4.9-cp36-cp36m-manylinux1_x86_64.whl (282.1 kB view details)

Uploaded CPython 3.6m

feyn-1.4.9-cp36-cp36m-macosx_10_15_x86_64.whl (173.0 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

feyn-1.4.9-cp36-cp36m-macosx_10_14_x86_64.whl (172.9 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 176.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a9026b5861707744e3b9885e6d541859be3f893da427e0002e286527895d65f5
MD5 76b00f22afd2962fdd5235d45d3e691f
BLAKE2b-256 fafe4c1541de9526756534ee2a68406deae2b55b26ebe4e530fc603cd475ba51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 171.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a651b750357a3e5a608beabb9d0482440a26c03bb1353f3cfaacdfb99a989d94
MD5 d97072636fcce3d7824cb27594a9a856
BLAKE2b-256 10d8659f9514e17223bac10297d45cac66ebd37d1b85d4709c816e43d93236fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 289.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b4e7ade92f2dfdb760c96eb11c3befdbf320409ec56152bb07109bc4fa343df
MD5 32f8e260bc56104e57d3878245563ce2
BLAKE2b-256 8cf8a791d57dca3ac79ca3d84ccb078cee68077a3d2ef3619ffebc2f4ca42b4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 289.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 700b177efe269c0f449163cd4d66b96a9b012be3182642002aa675e805ad796d
MD5 45534dc085ae27e7f9c8adb4674f1043
BLAKE2b-256 c2e0949ef36526923e571c313c62b095a24171f4f28b819b6dd9967f7f08a797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.1 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 78508d6e8d95d27bd98cda14903662658e4da44bcfa044a50bd5078a2de19067
MD5 ecd62a4f145142cff54dd8f1e92880bd
BLAKE2b-256 8fd9dfc2e001d2d13a5a05d3dc538f96e399711dc29c64e4c026dce8879e2837

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.1 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0cb1b8899002a60e0ff86586b0fbbec656f4965effe0c2760fa67ace1964dfe8
MD5 96eabea06edec47071367a9357d5312f
BLAKE2b-256 eaed9af4fdb6d39e4df09c19eb7a3df22495896e43fb8bf402800480f9779ecd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 176.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b2a5013ee6b01c6b0c93d249bacd73028e63ab9a01df73774c12ace6e3dc97a
MD5 6bb7edf5f87fcb23d4872bf47077193e
BLAKE2b-256 eec3c592cc3d4164a8c8443054af2b39d709f19a3da185933c2d3a2685d7d897

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp38-cp38-win32.whl
  • Upload date:
  • Size: 171.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bb94a5c1394d2a1cad86a135358eb6e17a28e26f379caa32820ff27adbdf355d
MD5 38577ed2a5d065d29503cdfffdf6b38a
BLAKE2b-256 864e6ad4742abace5056da92f874ffbdc82a9f31ff27dd3a78be1d288404a105

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 288.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 facd6f9174bafa25858236e681893d659cf5543bec62b325580ae30e4a74923e
MD5 2d4011914e2ef651c9a12b9b3dc6cd12
BLAKE2b-256 ae37caa9c1bfca28df4e6fc6c05e87a680500c56d785be8d9c705d9aca36a9e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 288.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 62ed4e839bc79cca44fd8d4d98e342455c0f5430af1e93424796c43275c3b145
MD5 248c1c5a536de7f978b54a9e3d6d3de4
BLAKE2b-256 cf7a59d073c6e49b8e302d6b190a38cd51640f6d2b120f214bcf356bd13538f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.1 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e845f6bce5e470097da0d976ede21eefbce31d15e6c34d8a6ca5dd3a764177db
MD5 bdf97feb6aad3e229ca703d12cfa2179
BLAKE2b-256 225ad60bac03026ae91aed37dd70b24d68e1cc5055635675c7e5f71528d7cc5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 173.1 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a86f359b240119b7765693fb7a484a3eebd9635bbd3fea851231f34ce6537df0
MD5 7065fdfb37ec308b0cc9ac30c338aa6e
BLAKE2b-256 1874471ba5bf50606c1a838867a0a95d990c16b0ba31682f9a16a22ae41011c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 175.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a127926a77bb84be8c8266e32f235e778efa5e9b5303ec13de50431befba0440
MD5 11cafb53836d03b5eee8e0eeb6b8ba57
BLAKE2b-256 abbb3adaaeabbf163a4280be1003740230720d9c95faf54ba71756119809d7a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 171.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fcc7759ad082ec06882b1b9f08328e041dd712288ccf9b6e7be6e034526b1a8a
MD5 555550814d0b10872290d9304e107d8c
BLAKE2b-256 50055f75b14e507db7d82367d2bd26ae633fef8db0c45ea17af1a1c53e6f48fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 288.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26761c6f010697305d1035c6845864e10b67d5ece7ef5db8681c425aa2b884ed
MD5 4b146939f1044f4213cb36a1b66c8caa
BLAKE2b-256 8e0688ece8ca29a374e1fb57b8382087e3c9cfb86a774aa217ace218daad05e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 288.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07daf3e1278467ad736b7acd6a43715cc01f8a4341431829793482bec461151e
MD5 6216de82f80a767967002008312bf39f
BLAKE2b-256 67b3e5b13a53b07abd0d041e0cfd3c4adc6342b5bfc0ad48e5ecbac12c9573e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.0 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 390723fd5c8ee91e291d4d14cb5f66f035907d7eb358c6f2f03ab80c9469cbc7
MD5 9571f6e6a756c24c612a5ae5bfa3b4db
BLAKE2b-256 641a62fcc5dd3069eff47f55eec76dff1f91f38cc6fc74e2dcc42c58476dd37a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 172.9 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9305dbbd72d1f61bf497003e09c38d41a2e5de6f345539f11f73454ad660b9bd
MD5 4c20c781a1f8ba308f500594738c69eb
BLAKE2b-256 3a89fc492f58525840c1df3df901147b876b7c4a7a1f7a676a65d6ad267bbfa2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 180.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 158764ba34c7bf440385cd28aa2d7452bb9ed90d1f032144390367c65c6dd127
MD5 0c98bc552245983487eac877396142f6
BLAKE2b-256 09d80c41db0385b74158df0437a26f9e4a057ba313cfcb259b0483c89e5ff29c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 176.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8400adbce7dd4beace39734c24c663920304168a2d9dae5fcf994fd9bbf5a810
MD5 f83a4b4749e551c5db339dc80181fda0
BLAKE2b-256 705aaf4f5f5957dc1fed8b23e1d37a9f6339c422a6315cd35bfe00d9da802c21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 282.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0af98cf0db708fde350140e78733b0a493743e33dbf05a03eca4365172ead85
MD5 6ff2cd65746fef2e60899969fda66072
BLAKE2b-256 3ac06516de391d76bbf1d8b804e699ed5d4cbacc317a85a371a89a0b9bf8498e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 282.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ca701456d4941de0ed8eaf6e7517394096c63c5a5f846380de9c7ad95537a11f
MD5 3abf61891c0caadc8f8185d010aa7661
BLAKE2b-256 9729c7ad1303c3a9b3097ba299cfa1228ecd31918da60f5fed3324590367cb83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 173.0 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 778c86c4ec842b5b14d2bb0b8a73f62b5c02d5d3ccf8bfaff3f3064bcff2541a
MD5 1736541f6f1701c2d1dc37f276b84f7e
BLAKE2b-256 f255bf6a0a6c1c1785156de8ec5c55f2bc389f68c5e85d2fb9129ad5ea457722

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.9-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 172.9 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.4.9-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f54472d5f6c46291c5c9ef2ef22c3492c7df2a00082c1e8b1fb0fe3c6a1ed4b3
MD5 1f306ddba74047a721c1e78cb5140d92
BLAKE2b-256 a18166d7193a1619e86b2e4904619fcc301a9238ac6fa382c766fd2ec0259f2c

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