pyAgrum
=======
``pyAgrum`` is a scientific C++ and Python library dedicated to Bayesian Networks and other Probabilistic Graphical Models. It provides a high-level interface to the part of aGrUM allowing to create, model, learn, use, calculate with and embed Bayesian Networks and other graphical models. Some specific (python and C++) codes are added in order to simplify and extend the ``aGrUM`` API.
Example
=======
.. code:: python
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 ?',["Yes","No"]))
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)
# or, equivalenlty, creating the BN with 4 variables, and the arcs in one line
bn=gum.fastBN("w<-r<-c{Yes|No}->s->w")
# 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")[{"c":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")[{"r":1,"s":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 hard evidence
ie.setEvidence({"s": 1, "c": 0})
ie.makeInference()
print(ie.posterior("w"))
# Adding soft and hard evidence
ie.setEvidence({"s": [0.5, 1], "c": 0})
ie.makeInference()
print(ie.posterior("w"))
LICENSE
=======
Copyright (C) 2005-2024 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
Raw data
{
"_id": null,
"home_page": "https://agrum.gitlab.io/",
"name": "pyAgrum-nightly",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "probabilities probabilistic-graphical-models inference diagnosis",
"author": "Pierre-Henri Wuillemin and Christophe Gonzales",
"author_email": "info@agrum.org",
"download_url": null,
"platform": "any",
"description": "\npyAgrum\n=======\n\n``pyAgrum`` is a scientific C++ and Python library dedicated to Bayesian Networks and other Probabilistic Graphical Models. It provides a high-level interface to the part of aGrUM allowing to create, model, learn, use, calculate with and embed Bayesian Networks and other graphical models. Some specific (python and C++) codes are added in order to simplify and extend the ``aGrUM`` API.\n\nExample\n=======\n\n.. code:: python\n\n import pyAgrum as gum\n\n # Creating BayesNet with 4 variables\n bn=gum.BayesNet('WaterSprinkler')\n print(bn)\n\n # Adding nodes the long way\n c=bn.add(gum.LabelizedVariable('c','cloudy ?',[\"Yes\",\"No\"]))\n print(c)\n\n # Adding nodes the short way\n s, r, w = [ bn.add(name, 2) for name in \"srw\" ]\n print (s,r,w)\n print (bn)\n\n # Addings arcs c -> s, c -> r, s -> w, r -> w\n bn.addArc(c,s)\n for link in [(c,r),(s,w),(r,w)]:\n bn.addArc(*link)\n print(bn)\n\n # or, equivalenlty, creating the BN with 4 variables, and the arcs in one line\n bn=gum.fastBN(\"w<-r<-c{Yes|No}->s->w\")\n\n # Filling CPTs\n bn.cpt(\"c\").fillWith([0.5,0.5])\n bn.cpt(\"s\")[0,:]=0.5 # equivalent to [0.5,0.5]\n bn.cpt(\"s\")[{\"c\":1}]=[0.9,0.1]\n bn.cpt(\"w\")[0,0,:] = [1, 0] # r=0,s=0\n bn.cpt(\"w\")[0,1,:] = [0.1, 0.9] # r=0,s=1\n bn.cpt(\"w\")[{\"r\":1,\"s\":0}] = [0.1, 0.9] # r=1,s=0\n bn.cpt(\"w\")[1,1,:] = [0.01, 0.99] # r=1,s=1\n bn.cpt(\"r\")[{\"c\":0}]=[0.8,0.2]\n bn.cpt(\"r\")[{\"c\":1}]=[0.2,0.8]\n\n # Saving BN as a BIF file\n gum.saveBN(bn,\"WaterSprinkler.bif\")\n\n # Loading BN from a BIF file\n bn2=gum.loadBN(\"WaterSprinkler.bif\")\n\n # Inference\n ie=gum.LazyPropagation(bn)\n ie.makeInference()\n print (ie.posterior(\"w\"))\n\n # Adding hard evidence\n ie.setEvidence({\"s\": 1, \"c\": 0})\n ie.makeInference()\n print(ie.posterior(\"w\"))\n\n # Adding soft and hard evidence\n ie.setEvidence({\"s\": [0.5, 1], \"c\": 0})\n ie.makeInference()\n print(ie.posterior(\"w\"))\n\nLICENSE\n=======\n\nCopyright (C) 2005-2024 by Pierre-Henri WUILLEMIN et Christophe GONZALES\n{prenom.nom}_at_lip6.fr\n\nThe aGrUM/pyAgrum library and all its derivatives are distributed under the LGPL3 license, see https://www.gnu.org/licenses/lgpl-3.0.en.html.\n\nAuthors\n=======\n\n- Pierre-Henri Wuillemin\n- Christophe Gonzales\n\nMaintainers\n===========\n\n- Lionel Torti\n- Gaspard Ducamp\n",
"bugtrack_url": null,
"license": "LGPLv3",
"summary": "Bayesian networks and other Probabilistic Graphical Models.",
"version": "1.17.2.dev202501301731932516",
"project_urls": {
"Bug Tracker": "https://gitlab.com/agrumery/aGrUM/-/issues",
"Documentation": "https://pyagrum.readthedocs.io/",
"Homepage": "https://agrum.gitlab.io/",
"Source Code": "https://gitlab.com/agrumery/aGrUM"
},
"split_keywords": [
"probabilities",
"probabilistic-graphical-models",
"inference",
"diagnosis"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c18a8c4f585c677487b6eee081503ff3e9dc17a85cd12b955a5712d5cc33a247",
"md5": "a7fe3af9bd82309e35ee623efe97f2e2",
"sha256": "a5ff4e008f2b007ae81aaa8ebe61902a2c0d67cda3e43bad3f0ed467f9f820a6"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a7fe3af9bd82309e35ee623efe97f2e2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4836468,
"upload_time": "2025-01-30T02:48:11",
"upload_time_iso_8601": "2025-01-30T02:48:11.473927Z",
"url": "https://files.pythonhosted.org/packages/c1/8a/8c4f585c677487b6eee081503ff3e9dc17a85cd12b955a5712d5cc33a247/pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f76d083dbdc0c1388f1c362f91139bc274d9c363d63fb770255c3fd6e82eb772",
"md5": "744b214fdb261928ff236ba6f1e253e0",
"sha256": "393ca18645720d9e1b8d0859f26e34d54ed71b2c27ee974b00aa3621980e1cc1"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "744b214fdb261928ff236ba6f1e253e0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4319951,
"upload_time": "2025-01-30T02:48:17",
"upload_time_iso_8601": "2025-01-30T02:48:17.447391Z",
"url": "https://files.pythonhosted.org/packages/f7/6d/083dbdc0c1388f1c362f91139bc274d9c363d63fb770255c3fd6e82eb772/pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8f1cfa4eefff234e0359b5fcf61965cd84e53ec3b08a86c8d86c92d749a072e",
"md5": "4e83a64c99dbee499c2e3cda1f87d4d5",
"sha256": "4f7fcdbab8bfb64186bb2cf32c8646927fdb8ebc9388d970e03b17464c9200e6"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4e83a64c99dbee499c2e3cda1f87d4d5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5533437,
"upload_time": "2025-01-30T02:48:20",
"upload_time_iso_8601": "2025-01-30T02:48:20.425900Z",
"url": "https://files.pythonhosted.org/packages/d8/f1/cfa4eefff234e0359b5fcf61965cd84e53ec3b08a86c8d86c92d749a072e/pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "563133d8ed77d8534e0ad31827e56af74eea16e088c386e5b64cc017799a555e",
"md5": "b753f013df580162b72c409a013f6783",
"sha256": "6eff1b7a7c092fb855a16d93853d390d6070355201c3a34498ce0aa44580746a"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b753f013df580162b72c409a013f6783",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5986076,
"upload_time": "2025-01-30T02:48:22",
"upload_time_iso_8601": "2025-01-30T02:48:22.430980Z",
"url": "https://files.pythonhosted.org/packages/56/31/33d8ed77d8534e0ad31827e56af74eea16e088c386e5b64cc017799a555e/pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9257b4f5bfdbf3f54dd307e9d88aaea239ec6aa33e903e22129093531c661b6",
"md5": "c2d61862ff00cbe79c2798542c0354e1",
"sha256": "e9f0728d2205b1a403c298fc9192ee3e723869868059b24686626eb1b9357a8c"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "c2d61862ff00cbe79c2798542c0354e1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2767654,
"upload_time": "2025-01-30T02:48:25",
"upload_time_iso_8601": "2025-01-30T02:48:25.980795Z",
"url": "https://files.pythonhosted.org/packages/d9/25/7b4f5bfdbf3f54dd307e9d88aaea239ec6aa33e903e22129093531c661b6/pyAgrum_nightly-1.17.2.dev202501301731932516-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "086a6b2dc4bb1a9f8344fddee4af77914022e7a268822b62a5c028c2183b4fc2",
"md5": "683eab5d86bfc1ba9fb3afc113920bcb",
"sha256": "48c49e34911698017980bb37be6e5b35e6f5f6a497eb0eb8320f45aa350782f8"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "683eab5d86bfc1ba9fb3afc113920bcb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4836471,
"upload_time": "2025-01-30T02:48:29",
"upload_time_iso_8601": "2025-01-30T02:48:29.091302Z",
"url": "https://files.pythonhosted.org/packages/08/6a/6b2dc4bb1a9f8344fddee4af77914022e7a268822b62a5c028c2183b4fc2/pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7ec9f1155c081352629792d034c042655baf9ba04ca93eb76eeac88cc28af03",
"md5": "9a5b63ec395477b1dd24e1aec6a0bb5d",
"sha256": "49bb6fa3f4d74d2ff0caf5e303473a4764e8136e5afbe80b3cd11286bc2166e2"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9a5b63ec395477b1dd24e1aec6a0bb5d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4319951,
"upload_time": "2025-01-30T02:48:32",
"upload_time_iso_8601": "2025-01-30T02:48:32.121583Z",
"url": "https://files.pythonhosted.org/packages/b7/ec/9f1155c081352629792d034c042655baf9ba04ca93eb76eeac88cc28af03/pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d30d46b00ac1dcf65017b1cfc3b65950bc5cd8b1a993b11d5acf6a039a398404",
"md5": "7ca1128dbe426adb6296147efd3ff7bf",
"sha256": "1f87f1443ced5052af51567cdc582cd7db860dbfda5ae9937c4c4aa5be900034"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7ca1128dbe426adb6296147efd3ff7bf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5533408,
"upload_time": "2025-01-30T02:48:34",
"upload_time_iso_8601": "2025-01-30T02:48:34.313810Z",
"url": "https://files.pythonhosted.org/packages/d3/0d/46b00ac1dcf65017b1cfc3b65950bc5cd8b1a993b11d5acf6a039a398404/pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09bd5fd73335d6afbefc77b72eb0337ad7d8681e85e421ceea38c59e1a061eca",
"md5": "5f0c2f7d6d2a85f3d5ff2ad27326e07d",
"sha256": "577e3292b7a6ffd758629687b16d1d4e73c96e9a67d538aaad1bbcd5a54b1df0"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5f0c2f7d6d2a85f3d5ff2ad27326e07d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5986091,
"upload_time": "2025-01-30T02:48:37",
"upload_time_iso_8601": "2025-01-30T02:48:37.642594Z",
"url": "https://files.pythonhosted.org/packages/09/bd/5fd73335d6afbefc77b72eb0337ad7d8681e85e421ceea38c59e1a061eca/pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "660055569ce0baa67ecd7a66cd105e398cd907bf2ac3e50c5cc84eeb93ed97e5",
"md5": "7b88375778ba2839616461bc54ee3af3",
"sha256": "638cfad6d7b3faade606bcf94bed603d594b298a7d863dd3130f556947ccc90f"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "7b88375778ba2839616461bc54ee3af3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2767710,
"upload_time": "2025-01-30T02:48:41",
"upload_time_iso_8601": "2025-01-30T02:48:41.015136Z",
"url": "https://files.pythonhosted.org/packages/66/00/55569ce0baa67ecd7a66cd105e398cd907bf2ac3e50c5cc84eeb93ed97e5/pyAgrum_nightly-1.17.2.dev202501301731932516-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cbf06953abfe27c1a3eb3b9f8445941a19e357417e8978fc15417311ada98086",
"md5": "d1c041d29be6c632f97d4b6b9877a329",
"sha256": "d2577bd64aabf6b4d261bc85f0127666da3b7d973fcf1903bc2a05802fe0c079"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d1c041d29be6c632f97d4b6b9877a329",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4843257,
"upload_time": "2025-01-30T02:48:44",
"upload_time_iso_8601": "2025-01-30T02:48:44.257741Z",
"url": "https://files.pythonhosted.org/packages/cb/f0/6953abfe27c1a3eb3b9f8445941a19e357417e8978fc15417311ada98086/pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a502b1cb7db2f49ca567c1f0ef50499698bf738987e24443b7e70dabc8a7c20c",
"md5": "c29daf4aa820fdb711d021dfd2ee671c",
"sha256": "ff18986fb8f3a42e84c4b0b3d5120c586a22058d1f04b8f82f33fc99e02773b3"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c29daf4aa820fdb711d021dfd2ee671c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4322536,
"upload_time": "2025-01-30T02:48:47",
"upload_time_iso_8601": "2025-01-30T02:48:47.805197Z",
"url": "https://files.pythonhosted.org/packages/a5/02/b1cb7db2f49ca567c1f0ef50499698bf738987e24443b7e70dabc8a7c20c/pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6643a07e0168269e1099ff2fd83fddb351058890aacd9d2809e979fc6e56485a",
"md5": "a2a103302852849749f0f4d620ee595b",
"sha256": "e00e084acda605ef1e3ff64e02dcfbda02b89a9e0d11ceb7e99e68b86cb16f88"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a2a103302852849749f0f4d620ee595b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5531394,
"upload_time": "2025-01-30T02:48:51",
"upload_time_iso_8601": "2025-01-30T02:48:51.437847Z",
"url": "https://files.pythonhosted.org/packages/66/43/a07e0168269e1099ff2fd83fddb351058890aacd9d2809e979fc6e56485a/pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25c358d4dab22b3c0534ac3de9dd1b03dd52e4ad804d25aa8087ce2855d04614",
"md5": "dfbe41c80e98359dfa7c1e6b8372b322",
"sha256": "2406b2f0936d05120389923664481334488747ec5af9f7a985b47b0b820d6512"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dfbe41c80e98359dfa7c1e6b8372b322",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5985353,
"upload_time": "2025-01-30T02:48:54",
"upload_time_iso_8601": "2025-01-30T02:48:54.904082Z",
"url": "https://files.pythonhosted.org/packages/25/c3/58d4dab22b3c0534ac3de9dd1b03dd52e4ad804d25aa8087ce2855d04614/pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3bd562b0d870a7492dc9b4527368977727827efabb1e491837a9e1d3a7049f9",
"md5": "9d0320c251fd7f21f8e5d90bed8e45c4",
"sha256": "b450d9847c8e39397b37fa784af79e952d4533d0eaa6987a4139debbfa453cc3"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "9d0320c251fd7f21f8e5d90bed8e45c4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2768864,
"upload_time": "2025-01-30T02:48:58",
"upload_time_iso_8601": "2025-01-30T02:48:58.145762Z",
"url": "https://files.pythonhosted.org/packages/c3/bd/562b0d870a7492dc9b4527368977727827efabb1e491837a9e1d3a7049f9/pyAgrum_nightly-1.17.2.dev202501301731932516-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e688f0139ed7133ae5278399877f4dd637770d173a16dd3825c8581e9d9f93e5",
"md5": "4bd69f92f8ae00e3951635d85d07201f",
"sha256": "d9d931ccf77c4e95b592f65ced09176f7dccb5871fcf74f849da461e6f29727c"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "4bd69f92f8ae00e3951635d85d07201f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4843725,
"upload_time": "2025-01-30T02:49:02",
"upload_time_iso_8601": "2025-01-30T02:49:02.422718Z",
"url": "https://files.pythonhosted.org/packages/e6/88/f0139ed7133ae5278399877f4dd637770d173a16dd3825c8581e9d9f93e5/pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0afce5ea37ed5a1d77872dc3d8361498fc86319a18d40ea155b54859f3356eab",
"md5": "d1f1239f5297a463e7c3e10cc4d0361d",
"sha256": "4c7600a4fed284e654deed95b7f18a6513adfd25f585e8d48739a0cf6177c263"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d1f1239f5297a463e7c3e10cc4d0361d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4322544,
"upload_time": "2025-01-30T02:49:04",
"upload_time_iso_8601": "2025-01-30T02:49:04.715637Z",
"url": "https://files.pythonhosted.org/packages/0a/fc/e5ea37ed5a1d77872dc3d8361498fc86319a18d40ea155b54859f3356eab/pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf91ad9365776b8f99235f1a8a405dc63dca9ab92a0ca1d616f42f52ef18a055",
"md5": "15f189288257d52a3e4ecaac4cef0113",
"sha256": "80ce0d3a673d1a48008ec1f58c85820b4054aeff4f72a94f14e03e581a7b20ae"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "15f189288257d52a3e4ecaac4cef0113",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5531274,
"upload_time": "2025-01-30T02:49:07",
"upload_time_iso_8601": "2025-01-30T02:49:07.199363Z",
"url": "https://files.pythonhosted.org/packages/bf/91/ad9365776b8f99235f1a8a405dc63dca9ab92a0ca1d616f42f52ef18a055/pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2454f9a7dee3138e9aa74d52e3905b203b91c3670b4cf6b683d0da4a53106ab6",
"md5": "321959f62f3cd093aabff139613cdb08",
"sha256": "3bea7caa030b42c7a2fe55348f314ccfdd99d1a42d6414a7d35eb60a8de71b6d"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "321959f62f3cd093aabff139613cdb08",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5985349,
"upload_time": "2025-01-30T02:49:10",
"upload_time_iso_8601": "2025-01-30T02:49:10.559686Z",
"url": "https://files.pythonhosted.org/packages/24/54/f9a7dee3138e9aa74d52e3905b203b91c3670b4cf6b683d0da4a53106ab6/pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2baad53fefb93766b0b7c53979df85907cbf3eeb0578f2c72ed4f3d3a602f0cb",
"md5": "c869cb5a498da853280b2ca9df10d4b3",
"sha256": "deb2ba09b2990525b67be3187797a5d0a77ae4ee88534b483bb0fcc804bd9a38"
},
"downloads": -1,
"filename": "pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "c869cb5a498da853280b2ca9df10d4b3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2770551,
"upload_time": "2025-01-30T02:49:13",
"upload_time_iso_8601": "2025-01-30T02:49:13.846756Z",
"url": "https://files.pythonhosted.org/packages/2b/aa/d53fefb93766b0b7c53979df85907cbf3eeb0578f2c72ed4f3d3a602f0cb/pyAgrum_nightly-1.17.2.dev202501301731932516-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-30 02:48:11",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "agrumery",
"gitlab_project": "aGrUM",
"lcname": "pyagrum-nightly"
}