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

Uploaded CPython 3.9Windows x86-64

feyn-1.5.3-cp39-cp39-win32.whl (175.0 kB view details)

Uploaded CPython 3.9Windows x86

feyn-1.5.3-cp39-cp39-manylinux2014_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.9

feyn-1.5.3-cp39-cp39-manylinux1_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.9

feyn-1.5.3-cp39-cp39-macosx_10_15_x86_64.whl (176.2 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

feyn-1.5.3-cp39-cp39-macosx_10_14_x86_64.whl (176.2 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

feyn-1.5.3-cp38-cp38-win_amd64.whl (179.2 kB view details)

Uploaded CPython 3.8Windows x86-64

feyn-1.5.3-cp38-cp38-win32.whl (175.0 kB view details)

Uploaded CPython 3.8Windows x86

feyn-1.5.3-cp38-cp38-manylinux2014_x86_64.whl (292.5 kB view details)

Uploaded CPython 3.8

feyn-1.5.3-cp38-cp38-manylinux1_x86_64.whl (292.5 kB view details)

Uploaded CPython 3.8

feyn-1.5.3-cp38-cp38-macosx_10_15_x86_64.whl (176.2 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

feyn-1.5.3-cp38-cp38-macosx_10_14_x86_64.whl (176.2 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

feyn-1.5.3-cp37-cp37m-win_amd64.whl (179.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

feyn-1.5.3-cp37-cp37m-win32.whl (174.8 kB view details)

Uploaded CPython 3.7mWindows x86

feyn-1.5.3-cp37-cp37m-manylinux2014_x86_64.whl (291.9 kB view details)

Uploaded CPython 3.7m

feyn-1.5.3-cp37-cp37m-manylinux1_x86_64.whl (291.9 kB view details)

Uploaded CPython 3.7m

feyn-1.5.3-cp37-cp37m-macosx_10_15_x86_64.whl (176.1 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

feyn-1.5.3-cp37-cp37m-macosx_10_14_x86_64.whl (176.0 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

feyn-1.5.3-cp36-cp36m-win_amd64.whl (183.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

feyn-1.5.3-cp36-cp36m-win32.whl (179.9 kB view details)

Uploaded CPython 3.6mWindows x86

feyn-1.5.3-cp36-cp36m-manylinux2014_x86_64.whl (285.4 kB view details)

Uploaded CPython 3.6m

feyn-1.5.3-cp36-cp36m-manylinux1_x86_64.whl (285.4 kB view details)

Uploaded CPython 3.6m

feyn-1.5.3-cp36-cp36m-macosx_10_15_x86_64.whl (176.1 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

feyn-1.5.3-cp36-cp36m-macosx_10_14_x86_64.whl (176.0 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 179.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b6328fbed3370a06470a4cf38165c25f1429094edc1bf6594c9f05bf37681864
MD5 f9f74d8943e7fbacff320fda3e45a276
BLAKE2b-256 6890c8b1d2cc80ee906989ab79b29e0804f4b58854712a7c1d62492ad7c25f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 175.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4ea711e66583b48164d93113556b5630c77903fe556679073e69d01d08ffe35c
MD5 5c50480bf2a241f7b8d144b13a20fed0
BLAKE2b-256 c6038e6084c63bdab844059d95566ef2ad221ca7ed37890b98a5bc064f9d0a46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 292.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 587592f70b4a1d7f71c2a5e0b83e5ccf4b3a00cdd0d18e1d98942ae4276ab16b
MD5 042c872d65d785ec982f8744e1a8136d
BLAKE2b-256 d1248125e5721c56b824fa3362f324ebb3d00910d7fc69f737da02c486686e24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 292.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3d144290a5bb5b6504a91f16faf65e7dee3f0b6bf8becae412b9ac8f163d50f7
MD5 ef774e1dbf8e2c6a45bec4f29139277e
BLAKE2b-256 c137b57a7857f83d155a9a0a2e5225a4543305f4afcd4450687b7a2d0e44fda7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f028b79fa3dc473a17c17c5892e9ef083d80d1f7f27096193778aa7b21d178e0
MD5 eb17eccaf447fce81cbfc40f91dc7540
BLAKE2b-256 e7149029f63454cb0f9bd0ce8a8b5184d84be032b5e17f8ceb29a04dc4fe70a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b994b3cc94f5217156d8421f19e124ee1c8e56bdf7a9f6c3450f63c11a586e3c
MD5 da0a7fba56bc19da806e0726e16ecef2
BLAKE2b-256 bc73bc1ac4d7d7b0f48423521ee7a2a679132cbf5d0875cac28ac931500fad07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 179.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 65c03811e957c05478b0c376655ea44f98bc297c15a1ad29f15e06a719a4ce6f
MD5 4517a3459605a7b2a3c870d4b22cc104
BLAKE2b-256 97ba77cb67442e89bc372a60260da3c0bd716af2f7721f8cdb12345a94f73c22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 175.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 07f4797fab303be9c484b19861e24ac9b49a7347f55c2f7479e3bdd3c047aad6
MD5 b03c6af480a67283eec132717ca49409
BLAKE2b-256 d9c6f85155abc4c1e2730f320a86742fbcc04b9321aeea3c24dfc8cfffdc9691

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 292.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92b8cf28399639d6c59016fedf94b1c630f4ec62b8168c3bc1e25dcd9c2c1a47
MD5 984b033a10e8ac368bd59ac322abb6d3
BLAKE2b-256 05d1a3c0574ff2ee5688d432e6356a9e2a3a57d85ab4794cab246a34cf8c0ddc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 292.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6402b53fd23abd360434b88b6becd8f4475a415da27df3d6bc0470a122b8c453
MD5 33694f85b5e3dbda7c23448a2c691bb9
BLAKE2b-256 ede258d7f5bd0a526427fd27feee8012420960a93080b9757cc0e2c08ccac55e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a52850dfee5136dae124b660ef2f9d223d55459faf1ec22f083cb41d60c1cad0
MD5 242b800129763381f9e365e73ba8c96b
BLAKE2b-256 95ca300fb0c62660e06c3d5e4309388245fafcf684d7c5f49a8dc5d7dd942f1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fb39ea915f44f3e2bd0b3da6358f1ec1be4060e24ccf1791c07680c280d90a3a
MD5 532fbf62a71fdb5598e0d08725981193
BLAKE2b-256 e764670853fd3a7cd9b4ae4d45c83e576f15867db79cd22b45207c9120c5722c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a27af855971c214478cc77131b3418e0858e588c78de9a953f6ca3300fca8d65
MD5 a9663f91f7234b00bc6401b2ed6dc3bf
BLAKE2b-256 e664ba10a620d5128f0023bebcf9353154092df26b105ff7d16e901f7a83bb0d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b8b17360ddaed2578c24802bc0c7e917cd381ea5240e1c55a19430a3dd5c3e37
MD5 69eaa125e9b72e7c1deea315be04e42a
BLAKE2b-256 c3184ec745448589f6e70ff2d3fdca562eb97e4340af8f2b374c539837772e39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 291.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec4eb39fa86a83b6710c1635afe3080f6dc4319a1bb5b06789e9acadd1169498
MD5 2621a0ac6ec989310bc771b80ea833e8
BLAKE2b-256 0c6baafd82eeca8bca76467c96c98bd4d11623dd232cff02a1d4f6fdbc6f1f41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 291.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d08e2e89e7dd2fb03ca033439a5e3616538bfc26a7d8f0d338a48969bb334897
MD5 465a68428014a00e3ab0a89c64f0ba2f
BLAKE2b-256 d4fa78d1da892c398d2d9230804225243a6ad6ea7255776ff80ee345f08a5f86

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cfa1f43cd59a33d4f276b9a7d9e76e30f4655aef796ddb652f9b7f7c2af93344
MD5 3c2dced3a2d21f0ba0b577198663a261
BLAKE2b-256 c3c9fd32a37e3ff029514fc2c9c3f34dbb85ca0e2230202fa1e09e774d692f5d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 19c1bc4682a9c18cd2532843cddabe92a5e35d85219a1d3a1969284178a1afd2
MD5 6591a92fb8c7045ff0a1a811ae1250da
BLAKE2b-256 905610492ecc80375ad3866ded6f6283e5cc54b323ce19942393a83fd795437e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3438a120171c781227d39cd2ad4014fe4b75233c42ff167c1931fee63308f948
MD5 b28a35bfdff2409c5e5c85ad633c6d64
BLAKE2b-256 b788417711c0abbb277e9c08dd327b20eae7005afda3bd92ee4a1d6b6eddad5d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3014e3f3f5a824ea5c35d1b7f0194861157c8adead6639fe6c30c7d945c17f28
MD5 605553631dbe73cad013542f8b64233d
BLAKE2b-256 ef5f55ffbac29eb4c0cb13ac082c6254cb4a42de7bb7d3e7445e9e7d426e46cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 285.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9c7072f68bc41862483d7197844ab72ad23385527b7a362aa22a2fabc90701d
MD5 2c25866441b179d4e2ba7de54a00783c
BLAKE2b-256 6d6f2f92d6606b8996c1ef148b6fcabe5f8b82a6842459c0cd4a3eaa4c8617b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.5.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 285.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for feyn-1.5.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7264d9c1ca48a6c29fc1c85ffe9ea3d0ae1ce6e1093f3d7dbcecc7d7deb0d9f2
MD5 612a9265884f3000f2ccb9bdf59a5d13
BLAKE2b-256 97b60fd02b388d12f2de36d2d029adab1bf703b3978e93ccbe00cdc7ffd6b28a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 77e85a4b5f2418fe702916f3055ec248bd55cd34921f3e76bfdfcb0b214c4939
MD5 fe93ca950f46e827f89eb8cff6930035
BLAKE2b-256 54bb76729625607ed56431cf738e544c9a65a0417cdb54773c43603153632117

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.5.3-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 53cfd5a7862d4cea1269127be6c51f0816f78a7955e2437ff12111473fac4945
MD5 0520db6412bd7374ba949da8177baba0
BLAKE2b-256 bae8d975baa02e68fa286c3f59a194f0493a4b37913f876bc36f1c688c2615aa

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