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

Uploaded CPython 3.9 Windows x86-64

feyn-1.4.7-cp39-cp39-win32.whl (168.9 kB view details)

Uploaded CPython 3.9 Windows x86

feyn-1.4.7-cp39-cp39-manylinux2014_x86_64.whl (286.2 kB view details)

Uploaded CPython 3.9

feyn-1.4.7-cp39-cp39-manylinux1_x86_64.whl (286.2 kB view details)

Uploaded CPython 3.9

feyn-1.4.7-cp39-cp39-macosx_10_15_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

feyn-1.4.7-cp39-cp39-macosx_10_14_x86_64.whl (170.1 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

feyn-1.4.7-cp38-cp38-win_amd64.whl (172.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

feyn-1.4.7-cp38-cp38-win32.whl (168.8 kB view details)

Uploaded CPython 3.8 Windows x86

feyn-1.4.7-cp38-cp38-manylinux2014_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.8

feyn-1.4.7-cp38-cp38-manylinux1_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.8

feyn-1.4.7-cp38-cp38-macosx_10_15_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

feyn-1.4.7-cp38-cp38-macosx_10_14_x86_64.whl (170.1 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

feyn-1.4.7-cp37-cp37m-win_amd64.whl (172.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

feyn-1.4.7-cp37-cp37m-win32.whl (168.6 kB view details)

Uploaded CPython 3.7m Windows x86

feyn-1.4.7-cp37-cp37m-manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.7m

feyn-1.4.7-cp37-cp37m-manylinux1_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.7m

feyn-1.4.7-cp37-cp37m-macosx_10_15_x86_64.whl (170.0 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

feyn-1.4.7-cp37-cp37m-macosx_10_14_x86_64.whl (169.9 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

feyn-1.4.7-cp36-cp36m-win_amd64.whl (177.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

feyn-1.4.7-cp36-cp36m-win32.whl (173.7 kB view details)

Uploaded CPython 3.6m Windows x86

feyn-1.4.7-cp36-cp36m-manylinux2014_x86_64.whl (279.1 kB view details)

Uploaded CPython 3.6m

feyn-1.4.7-cp36-cp36m-manylinux1_x86_64.whl (279.1 kB view details)

Uploaded CPython 3.6m

feyn-1.4.7-cp36-cp36m-macosx_10_15_x86_64.whl (170.0 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

feyn-1.4.7-cp36-cp36m-macosx_10_14_x86_64.whl (169.9 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 549baa65fcd30dc569dc168f406dbe80161bcada4aa55cc2a70aacb0b3ba2782
MD5 a2ddf9ce2c073fe291a7ddfe0eecc89b
BLAKE2b-256 560008b152fef1dad3cb3a876cb2160e61dbc58c0926e0323aca4d796173dd66

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8fd44d46e4b1ab3516ea8bcb6cd0f685f7983b443611d40f89d645dd6e0f2e22
MD5 7b89252e23284a5999d514a15dd261d3
BLAKE2b-256 c06d5d8637d122c7445a2ef7485c307baf65576ef0a8c167e97b77a541ec5486

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4812922a65b5953c9dd9619d84db601caf4dfee9f187a231ceefce0a039d21c8
MD5 4e154f9d10842757bd12d0471b387827
BLAKE2b-256 508553eee744c44f4e58103d21829215badf604c238517b5f81a1c1c0223d695

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a2074902fcd96d0b06680a004b65226c61c50be278ca684eaaa28065d28856b0
MD5 6026982f0a898c83da7c3136aeca171c
BLAKE2b-256 27ecb2667319fd452c7b3feeeeff23e4b9dfb1a8ec2d1c829c3939b1367c17ca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6501f8dd91a8b50517974cba32ca37e0b27f22fadf582bb74fd4c28569116656
MD5 39281a97cf677df971a140c8193536c5
BLAKE2b-256 8ce76cd10f688183e514eda08e07e12135030c980688b74574a44bc131c5e064

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 dcd6629dbb75099a7b12b6de1182dae4a1feda74540b77892c36d34033bd42f5
MD5 e1f6cdf5cd5ba14bcd88dc26d4e6f895
BLAKE2b-256 e180881384fd491fb027a02d76b9d8f965af1850644d8844842ee5ec51fe2953

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f7d080b4bb1e0d2a81d85962ce6ae247fc0876976b27dd7a1ddec727f981a9da
MD5 5b0425f0370a3b4e8b62574ed13ea724
BLAKE2b-256 efea250ae8cf1faca5a0c6c318fb8c95e28d4d89e25c62685669920286c7eb65

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 01b97590ad9f0afa8f9d8a90a9e8217bac9983d4d7fb887abb0f8bc61dc9a70f
MD5 deb7f7c104b2f47affa1e8d992945cf3
BLAKE2b-256 d7f559dc46b9fe64bce6d3b8a679297234a65e3cb3fe7b02eed72520b6e07fb7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a061a8ca15181e05aa1873202eb9e93ccefc5829429402d768151b0f3d835c74
MD5 f18a686a635b31d44d74cc320709b2be
BLAKE2b-256 e60ba292bcbfda58ef517ee84a5b3f36e8f049453e9ddc6fd4638ae915694c36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 92d865fd85b904908a2675c69ef0f7a5545b8abbba183cd06c10d09561f1339d
MD5 1bde0cbf59c5a65e254c79dd06a5182e
BLAKE2b-256 3f7d0f12f595694ef57a1bdaa443b1a7093252b4d97dd6bf7b174c694974391b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cfa63bf88fbd55084b34c999d6215248c41904ea26f981c3ac4bb3d4119ed772
MD5 6e98d89749e23dc450912f0323242226
BLAKE2b-256 097f1de2eaa40890b651a954b828a241c748926aea6f3cc05561978bbd6452c8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3b1f3e8ee9c173be9d362b4a7a2c706bebf612d3e26e03f157ef71751cc7083c
MD5 0fcc36a8e2a517172de142594354e88a
BLAKE2b-256 bf73a09bbc2978eed90a17e4b8a796e8f4edecca7e7c6d86d04ecae2cfd6b3a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 be7932dc9a1feffefa9bc52092d5de9fabb964279b237e96b543f9c542cea2fd
MD5 95dfb9dd2a0b8308a45de4881acc27d7
BLAKE2b-256 9d69d712e47e229a587f7f6f9ee6cdb52e21c53c233617eac1f51321a4dc2a57

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cfdc9f1d31b5dab2c28c6e22d89d40b3495434228f2ada16043f74305e3a8cd9
MD5 26351ed42f4c80aaf68e957e448990e3
BLAKE2b-256 f6d75f1649407f156bf3a2178962f717980078ad8256194b19943d7222d22d32

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab6982893198730d51e3246144b9092317d8d4cf4a854df068ae768a1b5ba148
MD5 ced1302b03353839ddf751a22df76627
BLAKE2b-256 ae8ce089eb0282eceb7f88332dbaf04ba1844cc26031f46491feb47605968644

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7960d33d094d469738e2d5cff68c225143c71368498c28dd5f7a828184066ccb
MD5 9285f3bea09b7be3b5ef1f44048de270
BLAKE2b-256 a385be9a1ee3e699971bb3f1818fee66b2ef130d3d5becc07150905d6838c03e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 057d8faaffadee79d6a7355df5d4c36f9fc6672ffdebfe647cdf01dd15438540
MD5 e5af5e603a1f386273729a8b107f800b
BLAKE2b-256 ea9eb58bc358d2bff4db720a0f2db274ce3bb151c5c963508587b382d5666020

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 beaa247098f2875278309394edeb9dbb36597359d8fec43cbc31ef35ef20b177
MD5 8240f8226a01f758ca4177701f59c48e
BLAKE2b-256 c75a31f48253abf4c4ac4854a3afaf587e699f67fa073e3a0b1088407aa38ac9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 78b41458f5abc0792026f3e3e175c85799c599e94d2e1023fd4521b84eed9add
MD5 a1b00a383e58fb92a8f25f1fdcd3ad07
BLAKE2b-256 224806017dbf8564ce9a3c95211115aee724782126f0688d95463067be82ca7a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5b9f2352b822b0ba00520f2faa6d286b17bf43be6e78646e798a930ffe6a4854
MD5 34f6d645ee039e5dbbf290f0841d68e3
BLAKE2b-256 4d40c843e5f2f21ac9dcedb41965c3ee8d1e8d077d3845849c03aa26067b2915

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31a0c4a3d24390de93ab5de349d72a30d5dcd0ba6584aeed5128ba4f5ac2e3d2
MD5 8df2dd7c403272a56604be51a6807279
BLAKE2b-256 11afdc119d2cb86aecd3fa67657797c5cd8afb11086b0b31766ddf925d18378f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 69540bf8df4e55d0c8aeb36e9b2ed2d9534fbc45ea8a433954d000aa19eb1ece
MD5 9d692b58424489e88225617201482b8d
BLAKE2b-256 90d4d81a5f98c0db15a29cfb2c21172d5f9e827ba15c1ce387c096cf9c0dff1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5b5aebc743acc935d59ade30ca23921d458c4de30f513cb4b672fbeed2588d28
MD5 a90cb56e90b862fad618bc331fe60e2e
BLAKE2b-256 6e20c79255e0e0c73c3529447b54dd2a4ee71043d2968026e744671633312337

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for feyn-1.4.7-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 217732539ce4fa48b39320e39702490a06bc6e3124d3e975283ef7bb5f11dc15
MD5 c70a0175eed4ca53a8cbf23399ca3940
BLAKE2b-256 ea513c043edb39ef2242a1e46eccfb161b5933a99466af42b79902d221f48469

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