Skip to main content

Feyn is the high level Python interface to interact with an Abzu QLattice.

Project description

Feyn: AI by Abzu

Feyn is a Python library that pushes machine learning to a new level by taking strong inspiration from quantum physics. A Feyn model is based on the path integral formulation of quantum physics originally proposed by the American physicist Richard P. Feynman.

Feyn models have similarities with other machine learning models such as random forest models or neural networks, so some of the concepts may be familiar to you already. But at it's core, the Feyn model introduces a new way to work with your data together with a revolutionary way to accumulate and transfer learnings.

But let's start with the basics.

To generate a Feyn-model you need access to a QLattice, short for Quantum Lattice. To learn more about getting access to a QLattice, visit www.abzu.ai.

The other needed component is this Python package (feyn), that runs on your computer and accumulate learnings from your data. These learnings are communicated to your QLattice over the network.

The QLattice is a high-performance quantum simulator that runs on dedicated hardware, hosted on a cluster. It is based on the path integral formulation, which is an approach to quantum mechanics that was originally proposed by the American physicist Richard P. Feynman. For all the curious individuals, the path integral formulation, in very simple words, evaluates the relations between two points by considering and summing all the different possibilities of trajectories between those points.

The QLattice can be divided into 2 parts: Registers and Interactions.

The registers are what we use to interact with the QLattice. They are the input and output interface of a Feyn model. Often they are the features of your data set.

The interactions are the basic computation units of the QLattice. They hold their own state and transform input data into output. It is how learnings are stored and what is used to extract the QGraphs.

The QGraph, short for Quantum Graph, represents all possible combinations connecting the input registers to the output register. That means all possible explanations for the given output with the given inputs, generated by the QLattice.

If you are interested in learning more about what a QLattice is, and how it works, then you should definately take a look at the in-depth documentation here.

Getting started: Feyn in 1 min

Ok, all this sounds good! But in practice how does this work?

Let us walk through a simple classification problem, step by step.

For this quick walk-through we will pick a simple classification problem. The breast cancer dataset which is bundled with sklearn.

This will show you the core concepts in building a graph to execute predictions, that you can deploy to your application.

Connect to your QLattice

from feyn import QLattice

qlattice = QLattice(url = "<URL to your qlattice>", api_token="<Your API token>")

Read in the data

Read in an example data set (here we use the breast cancer data set which is shipped with scikit-learn)

import sklearn.datasets
import pandas as pd

breast_cancer = sklearn.datasets.load_breast_cancer()

# Convert to a pandas dataframe
df = pd.DataFrame(breast_cancer.data,columns=breast_cancer.feature_names)
df['target'] = pd.Series(breast_cancer.target)
df.head()

Train locally and update learnings remotely

Retrieve a QGraph which represents an ordered list of all possible models to solve the problem. The first parameter is a list of all the concepts or features you wanr

# Get a classifier QGraph from the remote QLattice
qgraph = qlattice.get_classifier(data.columns, target="target")

Next, run for some epochs, where you fit the QGraph to the training data, and update the QLattice with the learnings from the best graph.

The update calls will bias the QLattice from your learnings. Meaning that next time you call qlattice.fit, the new graphs found will fit your problem better.

Notice, that the QLattice lives remotely on the Abzu cluster, but it never sees your local data. The dataset stays on your premise. So, you train locally, and just transmit your learnings to the QLattice. That is the way the QLattice gets better at producing QGraphs that fits your problem.

from sklearn.model_selection import train_test_split

train, test = train_test_split(df, test_size=0.33)

for _ in range(10):
    # Fit the local QGraph with your local data
    qgraph.fit(train)

    # Pich the graph with lowest loss on the training dataset as the best solution.
    best_graph = qgraph[0]

    # Teach the QLattice about this solution, so that it gets biased towards solutions similar to this.
    qlattice.update(best_graph)

Evaluate

Finally, evaluate the results in the test dataset. This is also how you utilize the Graph for predictions in your application.

from feyn import tools

# Use the graph to produce predictions. This graph is similar your model in other framework.
# It is the thing you can save to a file, and deploy to your application or production environment.
predictions = best_graph.predict(X_test)

# This is a classification problem, but we are using a regression model to solve it.
# There are many ways to do this. In this example we will round to nearest integer (the class).
predictions = predictions.round()

tools.plot_confusion_matrix(y_true=test["target"],
                            y_pred=predictions,
                            title="Evaluation Results")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

feyn-1.4.6-cp39-cp39-win_amd64.whl (166.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

feyn-1.4.6-cp39-cp39-win32.whl (161.5 kB view details)

Uploaded CPython 3.9 Windows x86

feyn-1.4.6-cp39-cp39-manylinux2014_x86_64.whl (281.1 kB view details)

Uploaded CPython 3.9

feyn-1.4.6-cp39-cp39-manylinux1_x86_64.whl (281.1 kB view details)

Uploaded CPython 3.9

feyn-1.4.6-cp39-cp39-macosx_10_15_x86_64.whl (162.5 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

feyn-1.4.6-cp39-cp39-macosx_10_14_x86_64.whl (162.4 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

feyn-1.4.6-cp38-cp38-win_amd64.whl (165.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.4.6-cp38-cp38-win32.whl (161.4 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.4.6-cp38-cp38-manylinux2014_x86_64.whl (280.7 kB view details)

Uploaded CPython 3.8

feyn-1.4.6-cp38-cp38-manylinux1_x86_64.whl (280.7 kB view details)

Uploaded CPython 3.8

feyn-1.4.6-cp38-cp38-macosx_10_15_x86_64.whl (162.5 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.4.6-cp38-cp38-macosx_10_14_x86_64.whl (162.4 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.4.6-cp37-cp37m-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.4.6-cp37-cp37m-win32.whl (161.2 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.4.6-cp37-cp37m-manylinux2014_x86_64.whl (280.7 kB view details)

Uploaded CPython 3.7m

feyn-1.4.6-cp37-cp37m-manylinux1_x86_64.whl (280.7 kB view details)

Uploaded CPython 3.7m

feyn-1.4.6-cp37-cp37m-macosx_10_15_x86_64.whl (162.3 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.4.6-cp37-cp37m-macosx_10_14_x86_64.whl (162.3 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.4.6-cp36-cp36m-win_amd64.whl (170.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.4.6-cp36-cp36m-win32.whl (166.4 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.4.6-cp36-cp36m-manylinux2014_x86_64.whl (273.8 kB view details)

Uploaded CPython 3.6m

feyn-1.4.6-cp36-cp36m-manylinux1_x86_64.whl (273.8 kB view details)

Uploaded CPython 3.6m

feyn-1.4.6-cp36-cp36m-macosx_10_15_x86_64.whl (162.3 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.4.6-cp36-cp36m-macosx_10_14_x86_64.whl (162.3 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 49375244eb1335198cf49765231abd94a4c92baa1d2a22cc3f9fa9ae0b6876f9
MD5 fbcdaba7abf206db79d1c053574ffe5e
BLAKE2b-256 8537a31c04eb262ed2ed54f72614aac98595c8055bd0591e942b362a5aa289c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 161.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bb042a4208ff8d7b69f7634204afccee521fe4abf3b296660ed605d1bf811afc
MD5 3352021c0726cce553301c3c1993b859
BLAKE2b-256 65f33d7a71f23093d91073ca5087d7767021a948d13da91b8e1fc642088ed664

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 281.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 029db19791be2bb27bb540df3f8aad6b394bc430121a3c5e3a45e1e31c8ab899
MD5 f3bb009b9a6145351c1496ce9a022967
BLAKE2b-256 dc4947310785cd4bdc28da6a3d954e61a02a9bf5052e5dff6adbd97b6fdacc3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 281.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bb65247752d1f9cca07b91133289709e1e59edf0cc666c0436122063d5ab6887
MD5 f710eb2ed0920448241719c3fe30b001
BLAKE2b-256 57e1e10afe3427fdd7c057707d69a28fadac1eda2ff976dda7a3aed754adcece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 350a6ba57e0537b0fad4b2560f861bc920cd011e043bbe117fd1fb47cfd70d4e
MD5 dd7778115a8a4812be7078430e71fdce
BLAKE2b-256 8812901b6cd19e6d0a4bb701a4a81eb9ee9d90b65b75f757a167cf20c5c88f5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 162.4 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 21b51284294cd129cea7c7cf82a06ce5fc0ca071a97c56d83a2a44931f719d34
MD5 e9c2649d53b15a0c2663808ecf130cdf
BLAKE2b-256 9850c01043a3d84080bc8d8f8a566192df4198bfc544ae11a3839523f72fc6b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 165.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a399d7aa17fca41bed50427d4a525efa1e0488c157d685e82adb225995a7f69c
MD5 33778b15de9e14b987e71a834373ad32
BLAKE2b-256 c6c1818018cfbe94b30cd59c44ef15c4966a5faf0515b3a8dfdae6618c061630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 161.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5eb93642853810fdc33d7132b9fed5ef84ed7bec331005d9042b4585b65be9ed
MD5 53e3a3025c6e5fce8c9aa82fafdf1bc8
BLAKE2b-256 e34fde937b70875158d686e995ae560069c76d6e4fffe0250b68deedb24da6e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 280.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc5de41db501f09a31dc35ecea2fc748d97c699016ec892f271d9f91a05d3148
MD5 d2bc445491d31a95e88b56a42a76cf26
BLAKE2b-256 c62963ed243b72aa8bae0ca796a7281e51c605a554ddbe869693d242caecc994

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 280.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b2b8b3ac642f0a0b602ce9c82e7f60b2a9960b4237d103aaebdf684e60fdc502
MD5 09a441810e7de78ff0d8eb01bbe2edc1
BLAKE2b-256 33b4567ac3b0ea5225ce67149575b02bd69b9fb8938d57f812feaed089545a51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1aee6341aa43c8e09de95b8b01b3f20ecd76eeb85d3ddbd53c0f927110700f72
MD5 9f7a2f8fb34444ef9f1c6a91f0d62369
BLAKE2b-256 543178a475cb963968651a0e51a0c618e64ed8b2090bd70e430967533393c8f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 162.4 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 29f3b500e45addea8449afc11156c75e02653bad3547bb11df073f3660e4c0f1
MD5 7ad5d6fb6686ad881787668753a42eb4
BLAKE2b-256 7abbc2c2cb2cd625707ac1b24bd3b03343bfd6115777c9adfa38b3562622fa36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 165.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5fa929f3580ce8b64e0f0946e57c55d00ad818148cf50fad3b12e19089719936
MD5 83a303fcf5f160e50793c87d5a57c908
BLAKE2b-256 497f0ddc4b21385b29ec7878c9bcfb15b9c48cf66cfd0dcd6d76e9c1968696c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 161.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 732a33639c4ab4aeb4a0dd94297d9dc414d7288ffbc4162553bd58c3d0392b53
MD5 2522041f248b40af624f8ed839e31500
BLAKE2b-256 a677442e080dda9f3b2f83087c4c698e603d5e2e5ebdc116b34a3875930ba15b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 280.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a41ab955e8546199fdd903955d45af25f87a4b36ecbdb2f9c31eb4667e520fd6
MD5 5053e341427671bbb1bf9e6c8e727c63
BLAKE2b-256 401aac53005406e8c1a43939f4b77dee40520c70e0ce4e2426745579e76b7bb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 280.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6d4ac1ff4a3526764ce5ed743d785caade6fee0f697986f15b977630a361a268
MD5 cd3171d696bce8ac9d2e3e012357249f
BLAKE2b-256 8d5df7c4f84ed8496aa6db43fdd0c6f3288ae7966ce71652e7bb96624c5239bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 162.3 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b74c3fc1d727cceb93d6be440fe913ba712f64a20252d024e78be58122cf948d
MD5 f3f5cf1bbd7c18f15c730378eead2a2f
BLAKE2b-256 acc1913ad59a3d8d22f3fea98c1691317f9634d909a1e80fc24436271644b6e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 162.3 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 366d3f1e7b8c5b8890c10bc48d96e077bac2a2c64d2bd2424d8388abd0669e85
MD5 8092c0479e6f5034c02299b4a3013e6c
BLAKE2b-256 ae5a98d882b6fe08f7eb165b556424bacb30b53d0f6683ce2dbaf46e9cc39a95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 170.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4a05787f9aa55f1cbefa9dceedfd9a04c8eda91b5207f962dffc61722bd726ae
MD5 81ba641d0f5dca1df28801ae198bdafb
BLAKE2b-256 deb70203950956f36a13433ab7052056fb37de1f35acf4449709b3a23cac8683

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 166.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b4e51437131e18438011179dd5b8f5c5977a86b55f40296571fd34d20a8225da
MD5 c23f23cc535842c25166b7f972396e76
BLAKE2b-256 1207edd14809c1a46c5326ea663a68444bcbeaf5a2bdbd5d5fb77b955d7185f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 273.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f195c20d714ad7f66b5577a03afc76fe0acfed3ff3c9518363c282b4ed291922
MD5 94fe3337daba4e71a1fc24387f5441f6
BLAKE2b-256 b0bbe7f847d0de0629dc8f6a5f26b320b923e48a7843f276386b2fb5997c3ba9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 273.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 739d20b4cdd4870e0a4765b6bc65c083bfabd62449734aacb5d5fd1d2cad63b6
MD5 9f5dd666d94ea84b61e18a6858887110
BLAKE2b-256 bff40aa38f50e1fa3abf451ccb162ef564588791f7c04b17ccb48da1b87a0c20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 162.3 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0a14dec910fa79f60480601bf6effb7f8e941b0554649e1b4f7a6d55506f8434
MD5 d5ed2196c5fe014a3b23ad57ac9c05ce
BLAKE2b-256 33d8bf8641961be60e9e46044b277e5f1aa69e6aa21f92b16d8237e7941c9ce2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feyn-1.4.6-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 162.3 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for feyn-1.4.6-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9fba2d2665c73e273a4cfa1bde546ff1b6b5008944d08b65596a66edb1102eca
MD5 c45e925b910868f7ff79a120a159f2f3
BLAKE2b-256 6614fc0ec729599cb3ad4aa6469c84664b42379c72c062bf838af769dad38b45

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