Skip to content

Commit

Permalink
update repository location
Browse files Browse the repository at this point in the history
  • Loading branch information
alexflint committed Dec 3, 2022
1 parent e9ef9b0 commit b24cf03
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Continuous integration](https://github.com/alexflint/logical-induction/actions/workflows/integrate.yaml/badge.svg)
![Continuous integration](https://github.com/monasticacademy/logical-induction/actions/workflows/integrate.yaml/badge.svg)

# Logical induction in Python

Expand All @@ -10,7 +10,7 @@ efficiency.

To run the example code:
```bash
$ git clone [email protected]:alexflint/logical-induction.git
$ git clone [email protected]:monasticacademy/logical-induction.git
$ cd logical-induction
$ python examples/two_updates.py

Expand Down
6 changes: 3 additions & 3 deletions notebooks/three_updates.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -224,19 +224,19 @@
"\n",
"print(\"after first update:\")\n",
"for sentence, credence in first_credences.items():\n",
" print(f' credence for \"{sentence}\"\" is {credence}')\n",
" print(f' credence for \"{sentence}\" is {credence}')\n",
" \n",
"second_credences = inductor.update(sentence2, trading_alg(sentence3, .5))\n",
"\n",
"print(\"after second update:\")\n",
"for sentence, credence in second_credences.items():\n",
" print(f' credence for \"{sentence}\"\" is {credence}')\n",
" print(f' credence for \"{sentence}\" is {credence}')\n",
"\n",
"third_credences = inductor.update(sentence1, trading_alg(sentence3, .5))\n",
"\n",
"print(\"after third update:\")\n",
"for sentence, credence in third_credences.items():\n",
" print(f' credence for \"{sentence}\"\" is {credence}')"
" print(f' credence for \"{sentence}\" is {credence}')"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "logicalinduction"
version = "0.1.4"
authors = [{name="Kōshin Alex Flint", email="[email protected]"}]
version = "0.1.5"
authors = [{name="Kōshin Alex Flint", email="[email protected]"}]
description = "A computable algorithm for quantifying uncertainty"
readme = "README.md"
license = { file="LICENSE" }
Expand All @@ -17,8 +17,8 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project.urls]
"Homepage" = "https://github.com/alexflint/logicalinduction"
"Bug Tracker" = "https://github.com/alexflint/logicalinduction/issues"
"Homepage" = "https://github.com/monasticacademy/logicalinduction"
"Bug Tracker" = "https://github.com/monasticacademy/logicalinduction/issues"

[tool.setuptools]
packages = ["logicalinduction"]

0 comments on commit b24cf03

Please sign in to comment.