Skip to main content

pyAgrum is a Python wrapper for the C++ aGrUM library

Project description

pyAgrum

pyAgrum is a Python wrapper for the Agrum library, to make flexible and scalable probabilistic graphical models for inference and diagnosis.

Sample code:

import pyAgrum as gum

bn=gum.BayesNet('WaterSprinkler')
print(bn)

Example

import pyAgrum as gum

# Creating BayesNet with 4 variables
bn=gum.BayesNet('WaterSprinkler')
print(bn)
# Adding nodes the long way
c=bn.add(gum.LabelizedVariable('c','cloudy ?',2))
print(c)
# Adding nodes the short way
s, r, w = [ bn.add(name, 2) for name in "srw" ]
print (s,r,w)
print (bn)
# Addings arcs c -> s, c -> r, s -> w, r -> w
bn.addArc(c,s)
for link in [(c,r),(s,w),(r,w)]:
  bn.addArc(*link)
print(bn)
# Filling CPTs
bn.cpt(c).fillWith([0.5,0.5])
bn.cpt(s)[0,:]=0.5 # equivalent to [0.5,0.5]
bn.cpt(s)[1,:]=[0.9,0.1]
bn.cpt(w)[0,0,:] = [1, 0] # r=0,s=0
bn.cpt(w)[0,1,:] = [0.1, 0.9] # r=0,s=1
bn.cpt(w)[1,0,:] = [0.1, 0.9] # r=1,s=0
bn.cpt(w)[1,1,:] = [0.01, 0.99] # r=1,s=1
bn.cpt(r)[{'c':0}]=[0.8,0.2]
bn.cpt(r)[{'c':1}]=[0.2,0.8]
# Saving BN as a BIF file
gum.saveBN(bn,"WaterSprinkler.bif")
# Loading BN from a BIF file
bn2=gum.loadBN("WaterSprinkler.bif")
# Inference
ie=gum.LazyPropagation(bn)
ie.makeInference()
print (ie.posterior(w))
# Adding evidence
ie.setEvidence({'s': 1, 'c': 0})
ie.makeInference()
print(ie.posterior(w))
ie.setEvidence({'s': [0, 1], 'c': [1, 0]})
ie.makeInference()
print(ie.posterior(w))

LICENSE

Copyright (C) 2005,2019 by Pierre-Henri WUILLEMIN et Christophe GONZALES {prenom.nom}_at_lip6.fr

The aGrUM/pyAgrum library and all its derivatives are distributed under the LGPL3 license, see https://www.gnu.org/licenses/lgpl-3.0.en.html.

Authors

  • Pierre-Henri Wuillemin

  • Christophe Gonzales

Maintainers

  • Lionel Torti

  • Gaspard Ducamp

Release history Release notifications | RSS feed

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.

pyAgrum-0.15.1-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

pyAgrum-0.15.1-cp37-cp37m-win32.whl (1.8 MB view details)

Uploaded CPython 3.7mWindows x86

pyAgrum-0.15.1-cp37-cp37m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.7m

pyAgrum-0.15.1-cp37-cp37m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.7m

pyAgrum-0.15.1-cp37-cp37m-macosx_10_7_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

pyAgrum-0.15.1-cp36-cp36m-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86-64

pyAgrum-0.15.1-cp36-cp36m-win32.whl (1.7 MB view details)

Uploaded CPython 3.6mWindows x86

pyAgrum-0.15.1-cp36-cp36m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.6m

pyAgrum-0.15.1-cp36-cp36m-manylinux1_i686.whl (4.1 MB view details)

Uploaded CPython 3.6m

pyAgrum-0.15.1-cp36-cp36m-macosx_10_7_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.6mmacOS 10.7+ x86-64

pyAgrum-0.15.1-cp35-cp35m-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.5mWindows x86-64

pyAgrum-0.15.1-cp35-cp35m-win32.whl (1.7 MB view details)

Uploaded CPython 3.5mWindows x86

pyAgrum-0.15.1-cp35-cp35m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.5m

pyAgrum-0.15.1-cp35-cp35m-manylinux1_i686.whl (4.1 MB view details)

Uploaded CPython 3.5m

pyAgrum-0.15.1-cp35-cp35m-macosx_10_6_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.5mmacOS 10.6+ x86-64

pyAgrum-0.15.1-cp34-cp34m-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.4mWindows x86-64

pyAgrum-0.15.1-cp34-cp34m-win32.whl (1.7 MB view details)

Uploaded CPython 3.4mWindows x86

pyAgrum-0.15.1-cp34-cp34m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.4m

pyAgrum-0.15.1-cp34-cp34m-manylinux1_i686.whl (4.1 MB view details)

Uploaded CPython 3.4m

pyAgrum-0.15.1-cp34-cp34m-macosx_10_6_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.4mmacOS 10.6+ x86-64

pyAgrum-0.15.1-cp27-cp27mu-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 2.7mu

pyAgrum-0.15.1-cp27-cp27mu-manylinux1_i686.whl (4.1 MB view details)

Uploaded CPython 2.7mu

pyAgrum-0.15.1-cp27-cp27m-win_amd64.whl (2.4 MB view details)

Uploaded CPython 2.7mWindows x86-64

pyAgrum-0.15.1-cp27-cp27m-win32.whl (1.7 MB view details)

Uploaded CPython 2.7mWindows x86

pyAgrum-0.15.1-cp27-cp27m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 2.7m

pyAgrum-0.15.1-cp27-cp27m-manylinux1_i686.whl (4.1 MB view details)

Uploaded CPython 2.7m

pyAgrum-0.15.1-cp27-cp27m-macosx_10_6_x86_64.whl (3.4 MB view details)

Uploaded CPython 2.7mmacOS 10.6+ x86-64

File details

Details for the file pyAgrum-0.15.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ed66be70524a01b1fc24266d515911943a3c930843c989f74fcbdb6f39c57b9b
MD5 98490b4aca0c5332dbe8d586a34ac327
BLAKE2b-256 7d0291779953a57c80b1ec672b94fb0fad8af338fbf532f86fd6926ca0c3d0f3

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bfaa2be88ff0c7d214c0f4620b637d342fb258eee5b70b1bd827f6c54fe45ba6
MD5 6fbc1b3102ada38dcd5ce3aafce42e46
BLAKE2b-256 2802d800d036a9afabdf2a1fe820b9c0116f536e159c6bf95ae54b50b0811228

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eea3fde0c676e1f91b52fb07b896dcb2859dbdb4962f558e1a11c4021a1805f5
MD5 fa23f1612e6c56d83b03e3f9e7bc4550
BLAKE2b-256 02625bf233785f80daf028a5562a816ce2fd44c9a215ed6f5ffe924a12aa6f0f

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3db0529123625e7b286c4c7e6c240f0bd007996c93696bff7681d5c81ec45c8c
MD5 5a94f209b1771ea21e8069525d4090e2
BLAKE2b-256 7ab96a64258ea669d23dd40c7f9e5eb661860f55ddbd412deac8447ca748d6a7

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp37-cp37m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e115b2394b9a6550d7c114a1d27b8d260d672225a7c869145a3a3810a7495d7a
MD5 749522be10d6aa125287c004e59af6da
BLAKE2b-256 63803a4f1708656b0f26081db756fdcc30d46f82738e5c3906a278de97ea2de1

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c5efd1bc1be9d03c737509acccaffb6962dfecd723209d073fb9bd6c15341be7
MD5 15a0de9accffbb989a6f54ba9d90ef86
BLAKE2b-256 254bcb44903b80d2df821ca55f408ff2a906479b75d2c08e2a3762301395c22c

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 926c4f17a86fd55f0d79c31600bc41ba80f9eb522c13ee9d218cd02e831c3639
MD5 5e59bd057bef66a5ed147516c7598df5
BLAKE2b-256 15de09839fa01dd0fc700f97367ab9aaac6f44dfa8f49718a4e6f93124037bdd

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e998058f5d8918524fc358e61d605334f4fc37de086a0263126b5d034adcd4d0
MD5 b184fdf7dd44183a564441ba2a944f79
BLAKE2b-256 8cdd0901f9662033670cb3b71c5fe7abe98ed711a5c9df4347bbac76ef199d84

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d18c60178513812fcc1b24ff4159ab000310759b37b8628ed5abb82f60cb116d
MD5 62934c5a8f6b712fae24b5c6ec3c9f22
BLAKE2b-256 b6ae0c3088325797c1d668a4322faae4b9c78c5484c21c8037c9869b8992c9b0

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp36-cp36m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp36-cp36m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.6m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp36-cp36m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 252a39a69cbf17f399b3bd00da901ef10d13edd3d977311878c9b575df713274
MD5 48b17a677ecf6fd64b397358742ff010
BLAKE2b-256 c1894bf49fdb5d98ef427a2f170344348bd4bca740161e26059fb501cb7f43d7

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f6a71e9ecc05c07efe2c0161a522f5e571e99b091babaef868a4d5d3a6ae7be3
MD5 0d44611e82e997c14db675ba16fdf97e
BLAKE2b-256 4f35e6775ba962632dbb8e96fa3508ad0e2a8460ceaa702daf7615aeef178902

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 bab6df42d5f943578d77c3be1f210b346ce5850d906365fa0a5796f59a7794ac
MD5 9229695cec692802133ff46920d475c2
BLAKE2b-256 e30e44350d062a8dc434261823b40d762095b3c43b24024e09b45e103ce9931e

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a9f7c7adb5eb53beccdddfac2104c22679a5241cadebd9bf7b8489d037002b93
MD5 d027edd53ce39c379315cd390ec1cc9c
BLAKE2b-256 9cf189f72606c1917456d209dc4e6da59e5edd1fac489acd0c605f3a94966d41

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d831a79f27b52d868c9834869182c21ed87f7d30e16a4062c16a820a036bd026
MD5 48c66be57faf0cd3c25a0ae95806d91b
BLAKE2b-256 6a5653454a6f9bd13fc6da4c550317c301a26b23276beba59e3ec09444f06148

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp35-cp35m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp35-cp35m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.5m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp35-cp35m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 c0e484a96e87bca635198c2915c5ec5550be0ef45feda72a47cf869bba0f2a6f
MD5 11b87dbd3e6c446ead998010714922d1
BLAKE2b-256 1e4c1a0f328ac62ce939def87a9767d6d899c0088c22828522916b0d9a52cc23

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 2ab30954b418b0421052365471fa8cf84003ce8073fa40b29ac86b7f2fa28fd0
MD5 ea8dc48a9db46310ac91780e0c7bba8a
BLAKE2b-256 b22953baeb4ba27d5d975a4383a51eb7bb59b75281145c6d521f2fc6ccad9d31

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp34-cp34m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 6e65ec28233fa9669120f7e90b61d16b2951c9b0c830403f141a610799ecb0a8
MD5 bf8fb1dd7f8fb43a3e12741ec119607a
BLAKE2b-256 cf64432e89f3be134d352c6a1c397bd87d578db1737858ea33a141dbb6bb45ff

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae24ccd7696912546ea5027f12af59e1cbdf0bba847c5b985522f0629b8d6c44
MD5 0daf1be97aae9911b51de6aa978f16e8
BLAKE2b-256 fb303878fb9090a2a1f226a8e4a2b0ea2623ea6efa0b6dbfc37ce537d6f3d348

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8586bbc81502e2c8d93111119bc8a908c72bf9beb44398076b82cd154ead922
MD5 39deeb79c75c7e5fa6b31e021180c2ef
BLAKE2b-256 4d785f667064cd3b41034957f59b6be3a361f6c67548d987962b05b117bb73d8

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp34-cp34m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp34-cp34m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.4m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp34-cp34m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 ed219791952f8d31bfd0a644e9d6e4d92c439b5e7a1297a2d4cb1572b06a4bb9
MD5 ad3e9573a8e376e031e115e1f1085bf7
BLAKE2b-256 abe5ead41ec2817459c0f10faebce3fd3ccc4ca0513749f2af396b6a9e1f3c8c

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ee3770c69c8e7ccb236d198eba34a49c1653a485442a818969aae68a9f62d226
MD5 af621f8fab84ea7f3ff3ac50697244ce
BLAKE2b-256 b8ae96c5bd0b789e3a504146d7ae15ef46540331c8e9254eefda94846b3e0e43

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc65f07b45ed1e2bc54996a96502e7167119599b1c2bfd3236fb8b5230319d12
MD5 58e5e0b2cba241caf97ba847b399d379
BLAKE2b-256 993b0ef47f802904363231c72c6485ef12c58729a99d1ec6316962d4f72fd0b1

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 ed57281099edaa112358d288c0fb6cc03cdad515bcd94952d16db1117d215de5
MD5 aa0de9b40db1474350bdeb18558480a4
BLAKE2b-256 239ea7e4910ac2637a4d17ffd2e88ec58dba16632a10ae91262d4131e218a4b1

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c27f7ba067b5231da0ab453d991bdb0e06d1045ba2f55883d5fb8cedf3d97751
MD5 b9f3c2ee69b71ddbb1e8150f8771329e
BLAKE2b-256 8cb72bb62c9325e3a45625e5bc382059057240b7561d7c8fde0a1ef294d068e0

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 efba5e16106ffb964957a3cfa7231532977e72006eb26a65f6c89618ac8be577
MD5 da415690e0bc86bf1bc376ac45f03c01
BLAKE2b-256 bf596a30c748773d4458e164a4cc5f7f627c9a5fdfc6a496b089568c83316a40

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac89579b41ced9fbe856878c4350cb45632706294a6b740c8baf0b45894cffe1
MD5 e7d1745a5237e9fa166d74b5470e3613
BLAKE2b-256 4e47994fc0881529b08331b42db5d9317c4da19010cf2e7001ef9a9fed8de994

See more details on using hashes here.

File details

Details for the file pyAgrum-0.15.1-cp27-cp27m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.15.1-cp27-cp27m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for pyAgrum-0.15.1-cp27-cp27m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 cd7ae090febfec0028e88ab934abf1d011e4cd043cd351ca28c75b6db36c2665
MD5 ee1e482bd60bc256ca0091cf5b9e8148
BLAKE2b-256 2d372fff48c4eb14c359a7299f68df877469390f5333f625c361542a0931163c

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