diff --git a/README.md b/README.md index 03c19a7..14f9e94 100644 --- a/README.md +++ b/README.md @@ -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 @@ -10,7 +10,7 @@ efficiency. To run the example code: ```bash -$ git clone git@github.com:alexflint/logical-induction.git +$ git clone git@github.com:monasticacademy/logical-induction.git $ cd logical-induction $ python examples/two_updates.py diff --git a/notebooks/three_updates.ipynb b/notebooks/three_updates.ipynb index b5c5ceb..bdba336 100644 --- a/notebooks/three_updates.ipynb +++ b/notebooks/three_updates.ipynb @@ -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}')" ] }, { diff --git a/pyproject.toml b/pyproject.toml index 7594017..946162a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "logicalinduction" -version = "0.1.4" -authors = [{name="Kōshin Alex Flint", email="alex.flint@gmail.com"}] +version = "0.1.5" +authors = [{name="Kōshin Alex Flint", email="koshin@monasticacademy.org"}] description = "A computable algorithm for quantifying uncertainty" readme = "README.md" license = { file="LICENSE" } @@ -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"] \ No newline at end of file