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.16.0-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.7+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6m

pyAgrum-0.16.0-cp36-cp36m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.7+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5m

pyAgrum-0.16.0-cp35-cp35m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5mmacOS 10.6+ x86-64

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

Uploaded CPython 3.4mWindows x86-64

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

Uploaded CPython 3.4mWindows x86

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

Uploaded CPython 3.4m

pyAgrum-0.16.0-cp34-cp34m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 3.4mmacOS 10.6+ x86-64

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mWindows x86-64

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

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

pyAgrum-0.16.0-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.16.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0c697b0e52f90d3529c3635d13ac5e097bc6edaad1f0343ed9564b73526dbbdd
MD5 a0cb832a8ab204b5a358987f3aae9730
BLAKE2b-256 629d358dd3f899d089187efb197546d8eaaa7e0c6a8964a5551a1b271e24589b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 359e903b57f040f4972ed043a9d709518bd1a0d46be5b375f68c89d7a077364d
MD5 c40c6f895c24bb85ac730c27c480db7c
BLAKE2b-256 761f4932ba799f4901cc9271942a5214382cd0bc8d3c023b0beace5a6a13230c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d980942cddd37192bf2c8facf91ed55e969e336f331f72fc735baebdad58ccf3
MD5 b7b044cef20523b5a748b37a66f14303
BLAKE2b-256 105f4ed818420b6f4c5e5acbce91e7eabd94d3779d789c8cfa1eff79e213b5c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 adac36342eb6b578c81e3791f4c8539297894f31a40adddc0889a147a8638c08
MD5 f4a9a8fa448554eac876cca4654f001e
BLAKE2b-256 1e33509f542bfc856a5db191b2e99635c03c490b6aaa27a3c902a7f1e2e34b2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 085348c7a06899a7ce77aec148f68ba8e5617fe081a07875aef64c8bca7d2ad3
MD5 b2d8dcb78dc00f24df3e4ea510a036a1
BLAKE2b-256 fa3001394fcb9fe7e062d084e2f12ed2ea4db37fc1d59afbee4ec91c368d6e79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ec51d8c0504ca1016667157ec2a0cd1eaae8efc5d6a9812aabb74dc28d99c1b2
MD5 5a33b0298b0d0cbb894099ded44814a7
BLAKE2b-256 68af800d5b20142bca535202719dc86e5da7d353a9c36884284cd415d64e70ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e5c7fee91c10dfaff238cda6510e321e797bbb68227ae0f2545afac98eff051d
MD5 329af42ec43527445a905c42a4d7c105
BLAKE2b-256 718614779d2d02d8600b0aaef7d451638b7eca9a4f7a96216e5546b6ff4e1b81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f6e4a2db03c0f19d8c9ef31b0d493c594421ad2d4bc8028186230984e2bc69f7
MD5 a1acd0d2bbfc20e4e9529321ddc19534
BLAKE2b-256 3e24a85b8031039753b44d3ccf5fb110f1c8e21463ddd7e82019ebff503391df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8dc635fd71947e0bbc33eb9faa128ecd230d28de0572e2e6c44c453e76a88700
MD5 50f26017ff1029a4de5cc84751a771ed
BLAKE2b-256 3dfa69a3f40b8c68c736ba6d1f1543968e1411a3e9d4cd323192563330dcf25c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp36-cp36m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9e239f8c44cfc29a8885731c9f70e08a8a0efd5d8e2e3a43730e90f1481fa06b
MD5 ee5fa00f4a4afcbeb3fe55c0caeb4856
BLAKE2b-256 63ece51406e79996ee24d3992e21a43a313fd5b159ce6baefe0cd92d14abf307

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 365b7420b66445fdd2fb065bc7a06f58e220e2e294e906e3df08441514c845e4
MD5 a57f1da44185192f0949d5c7953055d9
BLAKE2b-256 6b68eec452dd8933764dbd35237cef2ca936effbf0621077eecf3966a095584c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b236ea95e8a0908eb1143a27629314ee2b578206f3d80cfa945ba0acb0e744f4
MD5 68e42543108c3fd294a231988c3d1a4e
BLAKE2b-256 1c12903e91d02a6502b51214be1b9d52bffd3da610756008789feaea15607e91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3ed0aaa1f961b863e99b0a9232de276d2704344c38fd192c5031127f6af29f60
MD5 003d23160f283853a53c3fa3792fc0c8
BLAKE2b-256 0c4606f3a37aaf5e66070ea0446163b0b2bb68e4a1b9b55efd4a0a99d12dd07e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 31e362e33cf76a57118ea1a0f2ab1602a2005e935b3710409ca9b6203d1d7df9
MD5 76c3a53fa47e2476e1f3cd8ada6ad1c4
BLAKE2b-256 89af8596b8fdbe05d1dbd0e06e0ceadff2e1a8a8aad566556373f8b11451d42b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp35-cp35m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 5bec86d3e86196078f0e58c27c1b9a004e8d326e7e0ac12e6b4a4af433b85f3f
MD5 24111c6bfd66b74c0d57aceefdc0bdef
BLAKE2b-256 41bc980f3814bc23de42e1cc8fce6867a6b41fdeded203fcb11a9459444858a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 c1c2265d4bc829526efd7b6d652e60ba3ad3367897c903d1df4a75c4324e7b94
MD5 c966174970c5fd54b872b530e721e2cf
BLAKE2b-256 62496b618e93dd6631adf4821ef4f7317e9a84e708e232f4b3f9e978bff27be1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 efc5fd0628b8c16417aa68628b517125095d05e4840a88bc4d6039f5955e91aa
MD5 06a536ff63e7c857b891b1cfa730661c
BLAKE2b-256 20c1af3c8f7a5fbef10d3c52c5d3d2f607f3fbe36c010781b3ba26715a13bfe1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8afac2ebd4b9b2a83b26595d8ccb57646f254c21d7511610aba2177f872681b6
MD5 574b213c65d425a77ed992ac611f8fdc
BLAKE2b-256 7dbd9b067e6812e526ade00610d34512fda4be73adbf8e530d036f3f7aa4e8f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 288bc5d39935b9febfc4c7eba68ef625de42261990767f22aefd834083430ec2
MD5 2586b35babb9feaaa851f30d5c1fdd1e
BLAKE2b-256 c31c8c3f524d766f52719f0cdd451cbe0a3ff4d940894dfd800f6f2fa1c0f77c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp34-cp34m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 5e3e2c959c5102a4b2d3f0b52b17ed0cb95017177b7f66c18ee51993f3045690
MD5 dab02ebb657668e8423636dba44ae4eb
BLAKE2b-256 346f592005635c4008951c6cc2451f2fe40bef154a85513348226bba9ed52e8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71ba2a55658e054bf3688004f4b502c591f391c0c60e784b29660fca3d00279c
MD5 9a7f509a626f56ee2627bb2aeba014a0
BLAKE2b-256 1185c2bfdba78d243d8aee3fd6345cda591bf16ab9b2b0ed7123e0188d0d55f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf85539ca6f67efcd72418c26adb22d2fa1775445e29d181570f1be92c400414
MD5 8006db83d101fe041c4dc9036fadee4e
BLAKE2b-256 a4c958553839f73f34b85a1d82aa6cfa36a97a77ac65d246164c71ed8e1f898d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 25fcd5b6c7a437a7f7b96280b8c2bc5637b7c40daa4f066c85d82a7da2ace9f2
MD5 699ae6d55e5336b7b996bc29da5decf8
BLAKE2b-256 aacd17c2876738905f40665101225651074428186b87c7144ea12c1e41edc051

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7115dda75d347d84a1cdf5904f993cd9e096ccef55e1d226ff3d084919446f12
MD5 a799e62df582345a940346695dffdc8c
BLAKE2b-256 08047dd8a31f8a9306d3a676142da69f15f6ae4fd14c764c1c90cf16f01a0128

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 abfc397d8db8cd21ee1ef8de0ef6ba5f8d0ea97bf90ff314002aa190d385d87f
MD5 b79fe4ea87524c78b957fa5004ef37f8
BLAKE2b-256 9c5ff54c9feed767c09826b3cd854d634ff8856f18da103801df53442e2e43b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 83860eeba1918a7b4008250bade60c8b6368485cccb9dd243ce01395406e75c0
MD5 3ae131eca288f29719e6dfb2f37e6321
BLAKE2b-256 2fa39f0cfdea20c6dbc46d9fcc2cdefecd6a251320c26f3552c2ec8354855ac4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyAgrum-0.16.0-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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.0-cp27-cp27m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 c822f92c081e23834dc7801dd2d100e89e09fc816db63ef9227d8645272d290f
MD5 d5c910a626537449979315d2603792e6
BLAKE2b-256 914a22084437d41c9160ecc92b433eb053c5713a7bf621cb10578de1f2d47ea6

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