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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

feyn-1.5.6-cp39-cp39-manylinux2014_x86_64.whl (312.5 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.9macOS 10.14+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.15+ x86-64

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

Uploaded CPython 3.8macOS 10.14+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.15+ x86-64

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

Uploaded CPython 3.7mmacOS 10.14+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.15+ x86-64

feyn-1.5.6-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.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: feyn-1.5.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9bacc0975232230f52fe1e15fe08301285eb03d37c855a1857f7b3bca114308b
MD5 4523ca432fcfeb8b919f3758160ce78b
BLAKE2b-256 b383c84977cc9a491f939383f64e464fa85b6489b5b709793e77db5f050ed796

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ca19c37c39536e843916fc3857b626db7cc567d31cf1c9544eeed4aee5f020c7
MD5 8248ce6ed578f8809875695adea128e3
BLAKE2b-256 485c271fb3f427d9d8ef0d4bcaea3508de69c6b149287243ef7b1fe632a9aae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-cp39-cp39-manylinux2014_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.6-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e21619834fe8fb5039150897d99ea0c143308226f664c2bd8ee8cebadb307d55
MD5 560dd9714698900e1adb5183ad5b707d
BLAKE2b-256 ccab1bbf2d6340b7373f2685dfa7ad797cf07951de010e4e9f38efc09beac553

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b30bf4bc54ca90f5f0b6c9cd06555b40402333ee992e7541fabc4253a09654c4
MD5 89992a8b097e7abaf077a71e92dd7c68
BLAKE2b-256 283447e78b781ac28b44fd25a1469039af33a2ab7c2be28ec80411936aa65d32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7ebb7c02af77ed72033758a8b7a84fe7219a4f34d23bf43f63f5d3108deafae5
MD5 463615eca418bb99333248541344f416
BLAKE2b-256 60bd8c2203018ba6a80ac67d7e1c0e9c78e0afd3dc8aad39297001d3e2186016

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 693b051dc35ced0de8239860ebe773b8e42c3f9e5e7741ecdf62a813727cbbab
MD5 e04392acb01a01bcaf49dcf50d9d32bf
BLAKE2b-256 60611ee8c48974e4a9df72b493a82f43faf7940491371ea3f34ea722a7103ecd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f04e2df2a7e2bdf300475ba20c45e710885502e6a4150cc5b08fe47afae85471
MD5 5512f9cdd7671c846d7978a0e95a1378
BLAKE2b-256 47399dcdaf92007e4299e942ee50938b59304d17e6822480668b1f6c5433e916

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 09d87217e738299b10a8a1c77a872ff12239d21b6eb05193fc91011c3c38a2b9
MD5 543fc56f6cba6085a555bff093365deb
BLAKE2b-256 9d6ca5129ed38c7877aa833454e4dcff67afa699c1128466b8b5c6a37278c788

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d60310c75fff956a6c9bacbd2aa567f1ac0bb4005ea51375ba555c22baaac40
MD5 096c9802b5ba0769fbee4edb708d6aab
BLAKE2b-256 687e1843b89b19971eb0ad6d3af1ca6ccf91fee7bd9d6307eef3f6bce9ba5b86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f30e7d1d68e40aac54917c9b183f1b2b12a755f29bd633c133ba70eedbfef052
MD5 bd985c1570c97814e0dfe0202d8b0adf
BLAKE2b-256 2638573579d40da4495bc08a2321861888a93431da4dafaf89d4d84033de1cf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9143d3a992fe4b8ee1c7e8f406bf05df47f178fa1c209a8e91b2bd84f8a64efe
MD5 21c481505bee05dcdc98548fa4795b0d
BLAKE2b-256 42b0c3d71514dbe4e9c1cf030680ad2560c66548feb633c37abbbfe22e4b679a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 755e278d577ea92b487b526abea8371cb75dc31e818b0610d1fa09ccd4f9932f
MD5 1ac3da855355f05a62f78e8f281eecb8
BLAKE2b-256 d1cae32fb1669f8debf1958d653d19b41403661a8ee0b44784dedaddb21ac1f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 af1e2135cb3b8934297c1f1f65311bd622b7cebcf05204e9c7af0d585ac4b49c
MD5 7f16b83e45c5fa4063f6e87119b1f2b4
BLAKE2b-256 9cc256a5cfd3ebfbdcb0fc03456f7e0f4a4675a1afbd9b5fa804491242b12720

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bb1dd7257b8c6c515ff51123459d62612bd9666868698d50c1a86e10640b5f65
MD5 9e0be5ffc8cb32fc477535c20d11d308
BLAKE2b-256 4830123aab6e84af6f544df73964664812a791ba220a963d18833d8800b0f978

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c633c07ffd650ae9621e5fefb60529e2d459f3215aa6c921ed8acf369cfc926
MD5 f8dff4fe12acb04c33a37c16d1ddfd05
BLAKE2b-256 a106152b4fbb5260cba44730e8b231f4331b315ba3b5e05ca8e7ddbffd825876

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3ef78d6e6c602f5b13449a26c0a1cb217f614c0e8e0765c6653dc75a1ea29934
MD5 998e8b0e62996f53138b57611708a130
BLAKE2b-256 67dc357e1aa00a81f3a3da5f054096b7f1553728f1fdcdcf650492f2b5b42d12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13ae223d89d9fa062ecc815be4c2781203505d25a6e23774d7f37f30d8a8bc22
MD5 1a377d91373ae140c8d69b90fa42fb9c
BLAKE2b-256 b59f7e94569819759bb88b5ea209261aea99d6ff7256fc7e7478ee4b5bcb19d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 85fffff0c8a921a876161c4b189310cbb698e6f0ec87e0fe6a136600de58838e
MD5 6e32bbf11c5d9f94b73585bb8400c032
BLAKE2b-256 4541dce27ea304a773466b51ab075499d121deb6ed3f95f7a300adf45b419727

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ee1ee35f2521be7864de0e2f992e34ac7bc4e0ffc26061c4de69549ee843e869
MD5 29f9e53baf43019a464f63c75f937873
BLAKE2b-256 c7abddca579d5d5c0e510292cf916b6d92f2acb9f97eb6120f848474721483d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ead684166338d007faa0f4121fc36d0e05677c4e12cb3694f3358f791c834a6c
MD5 4e7e464c6dc5400ab7f390ed62cfce6c
BLAKE2b-256 416980792dce89356907aed6ec10532e0d196dec53c4bc6ea3a89a2e0f646a0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4adc982941397c538cae23502e89801a26287911cf453c375167ca828160c12c
MD5 ccd4694ae933dc3ee6ede41e262799d5
BLAKE2b-256 163fd08278ebb7ee6107b7943c0175d2b1d77ea4d5b0b59e7780bafc8fecde7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7dd62313f44ee6aa3c44e1f014f17dcabc33b0a9af3596413237f86106891fc2
MD5 25596462a9aed25749144cc822b37f54
BLAKE2b-256 f868a2b0d175dc3118a05baee1cf7c5f118f717f9c23f4dc642eb3b015610d7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82a3ab8240e80385ba7a0c29bd02a541cb54f44b0609b2c68475d6bcccf06190
MD5 63b7031aa9f0df50e30bb0bcb4d6932b
BLAKE2b-256 15dbac6e3413e04f2cc7594fbe367db2c44fbaaf672284b39c15e3207db3a921

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.6-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.6-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 edcf23016f613ed5ae6df833f5e28b88cc6d5b037e5c697ebd512d892fcf88ba
MD5 74b9ed4f982350048d90abe58ceee56a
BLAKE2b-256 4f2d9863df4ddf2bc4819a876f08fd7ae916a58f4c9e91834dfd4419fe439771

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