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

Uploaded CPython 3.9 Windows x86-64

feyn-1.6.0-cp39-cp39-win32.whl (185.0 kB view details)

Uploaded CPython 3.9 Windows x86

feyn-1.6.0-cp39-cp39-manylinux2014_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.9

feyn-1.6.0-cp39-cp39-manylinux1_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.9

feyn-1.6.0-cp39-cp39-macosx_10_15_x86_64.whl (187.1 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

feyn-1.6.0-cp39-cp39-macosx_10_14_x86_64.whl (187.0 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

feyn-1.6.0-cp38-cp38-win_amd64.whl (188.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.6.0-cp38-cp38-win32.whl (184.9 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.6.0-cp38-cp38-manylinux2014_x86_64.whl (320.9 kB view details)

Uploaded CPython 3.8

feyn-1.6.0-cp38-cp38-manylinux1_x86_64.whl (320.9 kB view details)

Uploaded CPython 3.8

feyn-1.6.0-cp38-cp38-macosx_10_15_x86_64.whl (187.2 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.6.0-cp38-cp38-macosx_10_14_x86_64.whl (187.1 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.6.0-cp37-cp37m-win_amd64.whl (188.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.6.0-cp37-cp37m-win32.whl (184.8 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.6.0-cp37-cp37m-manylinux2014_x86_64.whl (322.2 kB view details)

Uploaded CPython 3.7m

feyn-1.6.0-cp37-cp37m-manylinux1_x86_64.whl (322.2 kB view details)

Uploaded CPython 3.7m

feyn-1.6.0-cp37-cp37m-macosx_10_15_x86_64.whl (187.0 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.6.0-cp37-cp37m-macosx_10_14_x86_64.whl (186.9 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.6.0-cp36-cp36m-win_amd64.whl (193.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.6.0-cp36-cp36m-win32.whl (190.0 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.6.0-cp36-cp36m-manylinux2014_x86_64.whl (315.3 kB view details)

Uploaded CPython 3.6m

feyn-1.6.0-cp36-cp36m-manylinux1_x86_64.whl (315.3 kB view details)

Uploaded CPython 3.6m

feyn-1.6.0-cp36-cp36m-macosx_10_15_x86_64.whl (187.0 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.6.0-cp36-cp36m-macosx_10_14_x86_64.whl (186.9 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 189.0 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.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c8eb44378d63476efedea27eeb616dcbb31618446d06d6da8c45bff16ce79e89
MD5 864ff1f19d55f11a679868ed2b37145a
BLAKE2b-256 2fb8ee5cc60b77161d45b0050197e1465d898dbf707d27d6a85dc20d6b051dbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 185.0 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.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 81234202e37ce8ea8d8313a7445c94c05a564385652e58eb2077c652f4d3536f
MD5 f57b34cab799b074e66264c58089d0ca
BLAKE2b-256 8167a5fc58a49905f5aa73763237039ba689617356617cb5e76321a52284fab7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 315.0 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.6.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f1ca1ac9c5b90381a9ac33a7bd29344789bb61b05e9303624d0464651545934
MD5 86065a448f1e0955f508cdd0e4d5725e
BLAKE2b-256 467b0eaeb6d09696ff5cfe1745c4c0a6a50f68b728edcd3fc11be38204d7a7bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 315.0 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.6.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 41fac92a96688c66178fa7faa745551ebe2765755bcea3648ceb647c4974a979
MD5 5bc9fcb10cfece8225ce774ab1bff53b
BLAKE2b-256 21233239d4d2584072c33ba843edcb4f94db66ebf01091afd8c6b00f46d63dfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 187.1 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.6.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 da20d8b955326df86d6f53a26ff363080d7de9dfb4ebe26cd4b0c5b1c5c2257d
MD5 38dbc14427d766c3a0bd0ee257289c1a
BLAKE2b-256 2e79483821f07285c6fd391a8e89a8d60d94812b0714a4aa5c4487fe15e3dda4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 187.0 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.6.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3ef11424c5ca6b8233f8aa4b55bb5121e78ec7f5114f4ddaae444a35c0e84eae
MD5 1c3d43a15bd412b276f6122ee48dbf3f
BLAKE2b-256 49d34953a57a99d02c990b6e46f664ddd7fa42818cfbeb5b4786d8a5b5f6419b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 188.9 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.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c843f43dd35defc8fc68600eee62984af989037f07bd64adeebefb4078e04ab5
MD5 8087bce9d53af5baccf210997fe56239
BLAKE2b-256 e3751cb2730e84005836387e2838b9d0ed5771cfeff9ec286600e7d43f19503b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 184.9 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.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 394542405ff9d389172d2ef710bc06d64037db160b156a00a6ff5d5c754cac97
MD5 f8b864a25856b143d3f37676cd94705f
BLAKE2b-256 0d74aa6f3541dedd7c81594a86bdcf1b7f5bffc2e03b49a47807566c97312d67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 320.9 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.6.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc8375d1331014715f9bf81f2fa78d8bb7eee4f1cf35bc6686d88a36ae2ae11b
MD5 90f19d1b18dd05e8a69888c8a3c0eebe
BLAKE2b-256 699db3ec0c565b8667bd2cd0fad30cef7a880121fb5f811408943c7df7943384

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 320.9 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.6.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7deba9384deae4b2e7019d819bc89d80a7671aa811c852335cea22b186440049
MD5 bb0782091a32af8999b58ea48f8ad388
BLAKE2b-256 8b0f4a12964d9ad64b53a950df62c9896c587ecabdb05ae3c14c532dfbe56e99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 187.2 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.6.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 706dc4a1f912dfc7365d07dc3e727e74c2642786ccee6568a167d655edf7f390
MD5 314b3b454ce8654c52837ac5f8902d0b
BLAKE2b-256 53e195258c28ba595516e60adc6957251b966c29b07d31478d300e5dd29a3831

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 187.1 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.6.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 863dce47859343bc25f066c51936783f7b1b7d6b8444f6b821b74991553000d7
MD5 8e2e27660ec352704913ca2b62c6f1bb
BLAKE2b-256 3f42bb539b77336224692b680d2a62118bcd284e5a95400c20fe4277af259764

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 188.7 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.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3ed07a950778f53fffd67770bfa4e85f9bffa1fa2492a6392086e8f77363647c
MD5 9c08eb51ab31fc1a82a383463fe34911
BLAKE2b-256 3e49270a200bf6d59960142d936d69bfc9d5a42f7c4424635c12a260d456e486

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 184.8 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.6.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 78c180f7dd035ec11eb0ad91e8a39bfb5fba7860824db8128b802e4e8d37fd7b
MD5 48eb5688b749f7831b35d0937b6a2842
BLAKE2b-256 cb224e6a85b236aeb698ac97241ee4610b2eacd9aef248dd380669b0340d7220

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 322.2 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.6.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25193d024430e9d8e4d2b114fab83a3f6236fa689a06cee7d6f16e5adada5e31
MD5 95753cdcb8d67f1412d027c260cadf90
BLAKE2b-256 5dd1bced0faf723e5b2ce1115889ae1267b692fc4d74cb766a3154ef1d1ceff6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 322.2 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.6.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ee84180f50a3204a24238d2952def4379cf07d73c9043396363bde2baf594174
MD5 2a6260ede53990f2d714fa27af86c4a3
BLAKE2b-256 adaa2fd5528a354ae3e94947503eeae6bf8d3f2e2877c13c2b9ec12e887c1ae5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 187.0 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.6.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2ffad3fedc0d80fc61a6aa3e6eba4bddf7c9799aa3e1d1cdef657c059021d3b7
MD5 c9b3afab1167316809b61fce8f1d2e24
BLAKE2b-256 645b26692e8faae46033022e0c6bd3bd132e0b817ed239fbac3668d3cf47e312

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 186.9 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.6.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f2a1f53db4f79ac6ea9df8209e0480d7e43eabe068a841371c7d657dff874af6
MD5 fde7d71f6cc967d9e9d1e9621bd08f03
BLAKE2b-256 9d166bb22571ad6616e9c1e45242269c8b98758a6e3f3b03a129e820916fff0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 193.3 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.6.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 614642885b9cd493663750fb6088376f30b4c6a0541daa6798e83f51d3fc29f3
MD5 0c38a37c254d756d6eef07a338a89dd7
BLAKE2b-256 4b9290c7d08d62918be55387856253c8cd4998ca511ab9959fcbe32b1e9c1d2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 190.0 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.6.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3a6906ba871d7e0021a295e58b89857227c1f4f68a678039945980dad8acb56b
MD5 601fb4793bf1bb0802ed9d1cc1f6cdc6
BLAKE2b-256 af851f0118450749b9ba40b0ff72aafdfd3218b5d9c35c31bbde0ebb06f5e771

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 315.3 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.6.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8738011c29aaba3adf200245a5a26631bbe5f355883a80fcd2a18b646fa3f0cc
MD5 8e5179ec7717964363ad7bd591a49639
BLAKE2b-256 f8201afee1c94bd4e2fdae8fd8fd2049dcbdbb53cf35308b11b85f7146f2236b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 315.3 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.6.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 039776c2b5468dbb7b7f088f62c0c0083f4eb0de42a438171390cf9e3faca9f4
MD5 6fcfaa6de9bcb4241d43347767b799f0
BLAKE2b-256 2447322907d8429dbc02bc331baab0a16e049623956c490fa46bdef8a122bc2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 187.0 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.6.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 964b08132397f07405003ba9d7de2742fe0d0a94de24c6f0f91e9d9ad0507683
MD5 9a144b8ffce2400ab2bef5c766dcc091
BLAKE2b-256 9ff8ad4dd0c5072fb147f7df69e77680c88306b281f3e5f64eb737ef02bbf26c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.6.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 186.9 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.6.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 cd825fc713a5dfcf6c5e351785f74a44b8ac8c94d4155fb52714c41c617493d9
MD5 9ea6fd54b32bf38db2572ad1b511b5a2
BLAKE2b-256 5703c2b87f295488dc777f00e68280b03ee4f67df37aa88e8551406fa2022d27

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