diff --git a/markdown/chapter_1_introduction/tutorial_0_visualization.md b/markdown/chapter_1_introduction/tutorial_0_visualization.md index 3b46d13..c00cfc4 100644 --- a/markdown/chapter_1_introduction/tutorial_0_visualization.md +++ b/markdown/chapter_1_introduction/tutorial_0_visualization.md @@ -20,9 +20,9 @@ __Contents__ ```python -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() ``` Working Directory has been set to `HowToLens` diff --git a/markdown/chapter_1_introduction/tutorial_1_grids_and_galaxies.md b/markdown/chapter_1_introduction/tutorial_1_grids_and_galaxies.md index e0caf45..75e64eb 100644 --- a/markdown/chapter_1_introduction/tutorial_1_grids_and_galaxies.md +++ b/markdown/chapter_1_introduction/tutorial_1_grids_and_galaxies.md @@ -64,9 +64,9 @@ __Contents__ ```python -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() import matplotlib.pyplot as plt import numpy as np diff --git a/markdown/chapter_1_introduction/tutorial_2_ray_tracing.md b/markdown/chapter_1_introduction/tutorial_2_ray_tracing.md index a9cc3c7..14beb71 100644 --- a/markdown/chapter_1_introduction/tutorial_2_ray_tracing.md +++ b/markdown/chapter_1_introduction/tutorial_2_ray_tracing.md @@ -72,9 +72,9 @@ __Contents__ ```python -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() import matplotlib.pyplot as plt import autolens as al diff --git a/markdown/chapter_1_introduction/tutorial_3_more_ray_tracing.md b/markdown/chapter_1_introduction/tutorial_3_more_ray_tracing.md index 14aa99e..d5c3553 100644 --- a/markdown/chapter_1_introduction/tutorial_3_more_ray_tracing.md +++ b/markdown/chapter_1_introduction/tutorial_3_more_ray_tracing.md @@ -40,9 +40,9 @@ __Contents__ ```python -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() import numpy as np import autolens as al diff --git a/markdown/chapter_1_introduction/tutorial_4_point_sources.md b/markdown/chapter_1_introduction/tutorial_4_point_sources.md index d0c3761..a2dbc3c 100644 --- a/markdown/chapter_1_introduction/tutorial_4_point_sources.md +++ b/markdown/chapter_1_introduction/tutorial_4_point_sources.md @@ -19,9 +19,9 @@ __Contents__ ```python -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() import autolens as al import autolens.plot as aplt diff --git a/markdown/chapter_1_introduction/tutorial_5_lensing_formalism.md b/markdown/chapter_1_introduction/tutorial_5_lensing_formalism.md index 93dcd00..5f58aa8 100644 --- a/markdown/chapter_1_introduction/tutorial_5_lensing_formalism.md +++ b/markdown/chapter_1_introduction/tutorial_5_lensing_formalism.md @@ -20,9 +20,9 @@ __Contents__ ```python -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() import autolens as al import autolens.plot as aplt diff --git a/markdown/chapter_1_introduction/tutorial_6_data.md b/markdown/chapter_1_introduction/tutorial_6_data.md index 62cac30..f448cce 100644 --- a/markdown/chapter_1_introduction/tutorial_6_data.md +++ b/markdown/chapter_1_introduction/tutorial_6_data.md @@ -42,9 +42,9 @@ __Contents__ ```python -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() import numpy as np from pathlib import Path diff --git a/markdown/chapter_1_introduction/tutorial_7_fitting.md b/markdown/chapter_1_introduction/tutorial_7_fitting.md index 23519e7..b3c7bee 100644 --- a/markdown/chapter_1_introduction/tutorial_7_fitting.md +++ b/markdown/chapter_1_introduction/tutorial_7_fitting.md @@ -46,7 +46,7 @@ __Contents__ ```python -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() import numpy as np from pathlib import Path diff --git a/markdown/chapter_1_introduction/tutorial_8_summary.md b/markdown/chapter_1_introduction/tutorial_8_summary.md index 71d55da..77f7ee5 100644 --- a/markdown/chapter_1_introduction/tutorial_8_summary.md +++ b/markdown/chapter_1_introduction/tutorial_8_summary.md @@ -31,9 +31,9 @@ __Contents__ ```python -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -from autoconf import setup_notebook; setup_notebook() +from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/notebooks/chapter_1_introduction/tutorial_0_visualization.ipynb b/notebooks/chapter_1_introduction/tutorial_0_visualization.ipynb index 59c7082..c2a17b1 100644 --- a/notebooks/chapter_1_introduction/tutorial_0_visualization.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_0_visualization.ipynb @@ -62,9 +62,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()" + "from autolens import setup_notebook; setup_notebook()" ], "outputs": [], "execution_count": null diff --git a/notebooks/chapter_1_introduction/tutorial_1_grids_and_galaxies.ipynb b/notebooks/chapter_1_introduction/tutorial_1_grids_and_galaxies.ipynb index b8884e6..ffbcbcd 100644 --- a/notebooks/chapter_1_introduction/tutorial_1_grids_and_galaxies.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_1_grids_and_galaxies.ipynb @@ -106,9 +106,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import matplotlib.pyplot as plt\n", "import numpy as np\n", diff --git a/notebooks/chapter_1_introduction/tutorial_2_ray_tracing.ipynb b/notebooks/chapter_1_introduction/tutorial_2_ray_tracing.ipynb index 083cf1d..b7ccf66 100644 --- a/notebooks/chapter_1_introduction/tutorial_2_ray_tracing.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_2_ray_tracing.ipynb @@ -114,9 +114,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import matplotlib.pyplot as plt\n", "import autolens as al\n", diff --git a/notebooks/chapter_1_introduction/tutorial_3_more_ray_tracing.ipynb b/notebooks/chapter_1_introduction/tutorial_3_more_ray_tracing.ipynb index 8cce3b0..24b19a1 100644 --- a/notebooks/chapter_1_introduction/tutorial_3_more_ray_tracing.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_3_more_ray_tracing.ipynb @@ -82,9 +82,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import numpy as np\n", "import autolens as al\n", diff --git a/notebooks/chapter_1_introduction/tutorial_4_point_sources.ipynb b/notebooks/chapter_1_introduction/tutorial_4_point_sources.ipynb index b7dafb2..31740b6 100644 --- a/notebooks/chapter_1_introduction/tutorial_4_point_sources.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_4_point_sources.ipynb @@ -61,9 +61,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import autolens as al\n", "import autolens.plot as aplt" diff --git a/notebooks/chapter_1_introduction/tutorial_5_lensing_formalism.ipynb b/notebooks/chapter_1_introduction/tutorial_5_lensing_formalism.ipynb index f56b199..7dcd9a0 100644 --- a/notebooks/chapter_1_introduction/tutorial_5_lensing_formalism.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_5_lensing_formalism.ipynb @@ -62,9 +62,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import autolens as al\n", "import autolens.plot as aplt" diff --git a/notebooks/chapter_1_introduction/tutorial_6_data.ipynb b/notebooks/chapter_1_introduction/tutorial_6_data.ipynb index cab87b1..7b71949 100644 --- a/notebooks/chapter_1_introduction/tutorial_6_data.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_6_data.ipynb @@ -84,9 +84,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import numpy as np\n", "from pathlib import Path\n", diff --git a/notebooks/chapter_1_introduction/tutorial_7_fitting.ipynb b/notebooks/chapter_1_introduction/tutorial_7_fitting.ipynb index 7e38d99..a1cfb23 100644 --- a/notebooks/chapter_1_introduction/tutorial_7_fitting.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_7_fitting.ipynb @@ -88,7 +88,7 @@ "metadata": {}, "source": [ "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import numpy as np\n", "from pathlib import Path\n", diff --git a/notebooks/chapter_1_introduction/tutorial_8_summary.ipynb b/notebooks/chapter_1_introduction/tutorial_8_summary.ipynb index d67751e..bf06c98 100644 --- a/notebooks/chapter_1_introduction/tutorial_8_summary.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_8_summary.ipynb @@ -73,9 +73,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_2_lens_modeling/tutorial_1_non_linear_search.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_1_non_linear_search.ipynb index 2f58b8e..2dd1557 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_1_non_linear_search.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_1_non_linear_search.ipynb @@ -204,9 +204,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_2_lens_modeling/tutorial_2_practicalities.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_2_practicalities.ipynb index 8c8b1fe..5e52b66 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_2_practicalities.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_2_practicalities.ipynb @@ -121,9 +121,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_2_lens_modeling/tutorial_3_realism_and_complexity.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_3_realism_and_complexity.ipynb index 72aeefc..33b19b7 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_3_realism_and_complexity.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_3_realism_and_complexity.ipynb @@ -80,9 +80,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_2_lens_modeling/tutorial_4_dealing_with_failure.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_4_dealing_with_failure.ipynb index 21ea7ef..a6d592f 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_4_dealing_with_failure.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_4_dealing_with_failure.ipynb @@ -75,9 +75,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import numpy as np\n", "from pathlib import Path\n", diff --git a/notebooks/chapter_2_lens_modeling/tutorial_5_linear_profiles.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_5_linear_profiles.ipynb index 5a6afe5..fca9b72 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_5_linear_profiles.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_5_linear_profiles.ipynb @@ -89,9 +89,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import numpy as np\n", "from pathlib import Path\n", diff --git a/notebooks/chapter_2_lens_modeling/tutorial_6_masking_and_positions.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_6_masking_and_positions.ipynb index 5ce20c9..5132d70 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_6_masking_and_positions.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_6_masking_and_positions.ipynb @@ -64,9 +64,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_2_lens_modeling/tutorial_7_results.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_7_results.ipynb index 5036698..89bf1fd 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_7_results.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_7_results.ipynb @@ -62,9 +62,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_3_search_chaining/tutorial_1_search_chaining.ipynb b/notebooks/chapter_3_search_chaining/tutorial_1_search_chaining.ipynb index 670fb5c..69e9fef 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_1_search_chaining.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_1_search_chaining.ipynb @@ -96,9 +96,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import numpy as np\n", "from pathlib import Path\n", diff --git a/notebooks/chapter_3_search_chaining/tutorial_2_prior_passing.ipynb b/notebooks/chapter_3_search_chaining/tutorial_2_prior_passing.ipynb index d3819af..f08f369 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_2_prior_passing.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_2_prior_passing.ipynb @@ -69,9 +69,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import numpy as np\n", "from pathlib import Path\n", diff --git a/notebooks/chapter_3_search_chaining/tutorial_3_lens_and_source.ipynb b/notebooks/chapter_3_search_chaining/tutorial_3_lens_and_source.ipynb index abc885a..8a44d7c 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_3_lens_and_source.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_3_lens_and_source.ipynb @@ -97,9 +97,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autofit as af\n", diff --git a/notebooks/chapter_3_search_chaining/tutorial_4_x2_lens_galaxies.ipynb b/notebooks/chapter_3_search_chaining/tutorial_4_x2_lens_galaxies.ipynb index 238ca10..6849bf2 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_4_x2_lens_galaxies.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_4_x2_lens_galaxies.ipynb @@ -71,9 +71,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autofit as af\n", diff --git a/notebooks/chapter_3_search_chaining/tutorial_5_complex_source.ipynb b/notebooks/chapter_3_search_chaining/tutorial_5_complex_source.ipynb index 4b23777..d1f6d6c 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_5_complex_source.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_5_complex_source.ipynb @@ -68,9 +68,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autofit as af\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_10_brightness_adaption.ipynb b/notebooks/chapter_4_pixelizations/tutorial_10_brightness_adaption.ipynb index 2c5a5ad..6f64992 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_10_brightness_adaption.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_10_brightness_adaption.ipynb @@ -73,9 +73,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_11_adaptive_regularization.ipynb b/notebooks/chapter_4_pixelizations/tutorial_11_adaptive_regularization.ipynb index 837657b..76c9273 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_11_adaptive_regularization.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_11_adaptive_regularization.ipynb @@ -65,9 +65,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb b/notebooks/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb index b8ae72e..67c45f8 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb @@ -61,9 +61,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import autolens as al\n", "import autolens.plot as aplt" diff --git a/notebooks/chapter_4_pixelizations/tutorial_2_mappers.ipynb b/notebooks/chapter_4_pixelizations/tutorial_2_mappers.ipynb index 68d142e..bb91ec5 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_2_mappers.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_2_mappers.ipynb @@ -64,9 +64,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_3_inversions.ipynb b/notebooks/chapter_4_pixelizations/tutorial_3_inversions.ipynb index 7821aa1..31b0373 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_3_inversions.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_3_inversions.ipynb @@ -66,9 +66,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb b/notebooks/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb index e9dee34..131e4cc 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb @@ -69,9 +69,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_5_borders.ipynb b/notebooks/chapter_4_pixelizations/tutorial_5_borders.ipynb index 5f17ae4..0d35ee4 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_5_borders.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_5_borders.ipynb @@ -63,9 +63,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_6_lens_modeling.ipynb b/notebooks/chapter_4_pixelizations/tutorial_6_lens_modeling.ipynb index ea9b483..d0c8b57 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_6_lens_modeling.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_6_lens_modeling.ipynb @@ -70,9 +70,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.ipynb b/notebooks/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.ipynb index cfc2e8d..ad69139 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.ipynb @@ -65,9 +65,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/chapter_4_pixelizations/tutorial_9_fit_problems.ipynb b/notebooks/chapter_4_pixelizations/tutorial_9_fit_problems.ipynb index d78f6cb..c89a09e 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_9_fit_problems.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_9_fit_problems.ipynb @@ -102,9 +102,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "import autolens as al\n", "import autolens.plot as aplt" diff --git a/notebooks/chapter_optional/tutorial_searches.ipynb b/notebooks/chapter_optional/tutorial_searches.ipynb index 7d8d8a0..bfa05ee 100644 --- a/notebooks/chapter_optional/tutorial_searches.ipynb +++ b/notebooks/chapter_optional/tutorial_searches.ipynb @@ -65,9 +65,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/simulator/lens_sersic.ipynb b/notebooks/simulator/lens_sersic.ipynb index 79f4b54..46f9a59 100644 --- a/notebooks/simulator/lens_sersic.ipynb +++ b/notebooks/simulator/lens_sersic.ipynb @@ -77,9 +77,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/simulator/no_lens_light.ipynb b/notebooks/simulator/no_lens_light.ipynb index 413f403..d1d92e4 100644 --- a/notebooks/simulator/no_lens_light.ipynb +++ b/notebooks/simulator/no_lens_light.ipynb @@ -78,9 +78,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/simulator/no_lens_light__mass_sis.ipynb b/notebooks/simulator/no_lens_light__mass_sis.ipynb index 65e79cc..4699d5b 100644 --- a/notebooks/simulator/no_lens_light__mass_sis.ipynb +++ b/notebooks/simulator/no_lens_light__mass_sis.ipynb @@ -76,9 +76,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/notebooks/simulator/source_complex.ipynb b/notebooks/simulator/source_complex.ipynb index 839a85f..32ea71b 100644 --- a/notebooks/simulator/source_complex.ipynb +++ b/notebooks/simulator/source_complex.ipynb @@ -80,9 +80,9 @@ "metadata": {}, "source": [ "\n", - "from autoconf import jax_wrapper # Sets JAX environment before other imports\n", + "from autolens import jax_wrapper # Sets JAX environment before other imports\n", "\n", - "from autoconf import setup_notebook; setup_notebook()\n", + "from autolens import setup_notebook; setup_notebook()\n", "\n", "from pathlib import Path\n", "import autolens as al\n", diff --git a/scripts/chapter_1_introduction/tutorial_0_visualization.py b/scripts/chapter_1_introduction/tutorial_0_visualization.py index e59704b..7063770 100644 --- a/scripts/chapter_1_introduction/tutorial_0_visualization.py +++ b/scripts/chapter_1_introduction/tutorial_0_visualization.py @@ -16,9 +16,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() """ If the printed working directory does not match the workspace path on your computer, you can manually set it diff --git a/scripts/chapter_1_introduction/tutorial_1_grids_and_galaxies.py b/scripts/chapter_1_introduction/tutorial_1_grids_and_galaxies.py index cd504a1..52c203e 100644 --- a/scripts/chapter_1_introduction/tutorial_1_grids_and_galaxies.py +++ b/scripts/chapter_1_introduction/tutorial_1_grids_and_galaxies.py @@ -60,9 +60,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import matplotlib.pyplot as plt import numpy as np diff --git a/scripts/chapter_1_introduction/tutorial_2_ray_tracing.py b/scripts/chapter_1_introduction/tutorial_2_ray_tracing.py index e24ba8b..5fed74a 100644 --- a/scripts/chapter_1_introduction/tutorial_2_ray_tracing.py +++ b/scripts/chapter_1_introduction/tutorial_2_ray_tracing.py @@ -68,9 +68,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import matplotlib.pyplot as plt import autolens as al diff --git a/scripts/chapter_1_introduction/tutorial_3_more_ray_tracing.py b/scripts/chapter_1_introduction/tutorial_3_more_ray_tracing.py index 1771c87..c5e2885 100644 --- a/scripts/chapter_1_introduction/tutorial_3_more_ray_tracing.py +++ b/scripts/chapter_1_introduction/tutorial_3_more_ray_tracing.py @@ -36,9 +36,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import numpy as np import autolens as al diff --git a/scripts/chapter_1_introduction/tutorial_4_point_sources.py b/scripts/chapter_1_introduction/tutorial_4_point_sources.py index a8823a1..83b0ff2 100644 --- a/scripts/chapter_1_introduction/tutorial_4_point_sources.py +++ b/scripts/chapter_1_introduction/tutorial_4_point_sources.py @@ -15,9 +15,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import autolens as al import autolens.plot as aplt diff --git a/scripts/chapter_1_introduction/tutorial_5_lensing_formalism.py b/scripts/chapter_1_introduction/tutorial_5_lensing_formalism.py index 45edd88..a2c4991 100644 --- a/scripts/chapter_1_introduction/tutorial_5_lensing_formalism.py +++ b/scripts/chapter_1_introduction/tutorial_5_lensing_formalism.py @@ -16,9 +16,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import autolens as al import autolens.plot as aplt diff --git a/scripts/chapter_1_introduction/tutorial_6_data.py b/scripts/chapter_1_introduction/tutorial_6_data.py index 81224b7..68f2f99 100644 --- a/scripts/chapter_1_introduction/tutorial_6_data.py +++ b/scripts/chapter_1_introduction/tutorial_6_data.py @@ -38,9 +38,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import numpy as np from pathlib import Path diff --git a/scripts/chapter_1_introduction/tutorial_7_fitting.py b/scripts/chapter_1_introduction/tutorial_7_fitting.py index 23f6596..c10c8a0 100644 --- a/scripts/chapter_1_introduction/tutorial_7_fitting.py +++ b/scripts/chapter_1_introduction/tutorial_7_fitting.py @@ -42,7 +42,7 @@ """ -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import numpy as np from pathlib import Path diff --git a/scripts/chapter_1_introduction/tutorial_8_summary.py b/scripts/chapter_1_introduction/tutorial_8_summary.py index 3ca34b7..4d50143 100644 --- a/scripts/chapter_1_introduction/tutorial_8_summary.py +++ b/scripts/chapter_1_introduction/tutorial_8_summary.py @@ -27,9 +27,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_2_lens_modeling/tutorial_1_non_linear_search.py b/scripts/chapter_2_lens_modeling/tutorial_1_non_linear_search.py index a79b262..dbf3e7d 100644 --- a/scripts/chapter_2_lens_modeling/tutorial_1_non_linear_search.py +++ b/scripts/chapter_2_lens_modeling/tutorial_1_non_linear_search.py @@ -157,9 +157,9 @@ - [A Zero-Math Introduction to MCMC Methods](https://towardsdatascience.com/a-zero-math-introduction-to-markov-chain-monte-carlo-methods-dcba889e0c50) """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_2_lens_modeling/tutorial_2_practicalities.py b/scripts/chapter_2_lens_modeling/tutorial_2_practicalities.py index 12ef488..5a03572 100755 --- a/scripts/chapter_2_lens_modeling/tutorial_2_practicalities.py +++ b/scripts/chapter_2_lens_modeling/tutorial_2_practicalities.py @@ -74,9 +74,9 @@ is outputting results, try increasing this value to ensure the model-fit runs efficiently.** """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_2_lens_modeling/tutorial_3_realism_and_complexity.py b/scripts/chapter_2_lens_modeling/tutorial_3_realism_and_complexity.py index c17c878..bfc36d9 100644 --- a/scripts/chapter_2_lens_modeling/tutorial_3_realism_and_complexity.py +++ b/scripts/chapter_2_lens_modeling/tutorial_3_realism_and_complexity.py @@ -34,9 +34,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_2_lens_modeling/tutorial_4_dealing_with_failure.py b/scripts/chapter_2_lens_modeling/tutorial_4_dealing_with_failure.py index 25516e4..e303564 100644 --- a/scripts/chapter_2_lens_modeling/tutorial_4_dealing_with_failure.py +++ b/scripts/chapter_2_lens_modeling/tutorial_4_dealing_with_failure.py @@ -29,9 +29,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import numpy as np from pathlib import Path diff --git a/scripts/chapter_2_lens_modeling/tutorial_5_linear_profiles.py b/scripts/chapter_2_lens_modeling/tutorial_5_linear_profiles.py index 77efd3c..a825a72 100644 --- a/scripts/chapter_2_lens_modeling/tutorial_5_linear_profiles.py +++ b/scripts/chapter_2_lens_modeling/tutorial_5_linear_profiles.py @@ -43,9 +43,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import numpy as np from pathlib import Path diff --git a/scripts/chapter_2_lens_modeling/tutorial_6_masking_and_positions.py b/scripts/chapter_2_lens_modeling/tutorial_6_masking_and_positions.py index 500cdb9..8c99a6c 100644 --- a/scripts/chapter_2_lens_modeling/tutorial_6_masking_and_positions.py +++ b/scripts/chapter_2_lens_modeling/tutorial_6_masking_and_positions.py @@ -18,9 +18,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_2_lens_modeling/tutorial_7_results.py b/scripts/chapter_2_lens_modeling/tutorial_7_results.py index 29de55f..cf4429e 100644 --- a/scripts/chapter_2_lens_modeling/tutorial_7_results.py +++ b/scripts/chapter_2_lens_modeling/tutorial_7_results.py @@ -16,9 +16,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_3_search_chaining/tutorial_1_search_chaining.py b/scripts/chapter_3_search_chaining/tutorial_1_search_chaining.py index 7b2732c..3220bf7 100644 --- a/scripts/chapter_3_search_chaining/tutorial_1_search_chaining.py +++ b/scripts/chapter_3_search_chaining/tutorial_1_search_chaining.py @@ -50,9 +50,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import numpy as np from pathlib import Path diff --git a/scripts/chapter_3_search_chaining/tutorial_2_prior_passing.py b/scripts/chapter_3_search_chaining/tutorial_2_prior_passing.py index 5b40def..0b1123f 100644 --- a/scripts/chapter_3_search_chaining/tutorial_2_prior_passing.py +++ b/scripts/chapter_3_search_chaining/tutorial_2_prior_passing.py @@ -23,9 +23,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import numpy as np from pathlib import Path diff --git a/scripts/chapter_3_search_chaining/tutorial_3_lens_and_source.py b/scripts/chapter_3_search_chaining/tutorial_3_lens_and_source.py index e373807..edf9a8a 100644 --- a/scripts/chapter_3_search_chaining/tutorial_3_lens_and_source.py +++ b/scripts/chapter_3_search_chaining/tutorial_3_lens_and_source.py @@ -50,9 +50,9 @@ you fit the lens and source simultaneously! """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autofit as af diff --git a/scripts/chapter_3_search_chaining/tutorial_4_x2_lens_galaxies.py b/scripts/chapter_3_search_chaining/tutorial_4_x2_lens_galaxies.py index d2c73bc..849c1f0 100644 --- a/scripts/chapter_3_search_chaining/tutorial_4_x2_lens_galaxies.py +++ b/scripts/chapter_3_search_chaining/tutorial_4_x2_lens_galaxies.py @@ -25,9 +25,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autofit as af diff --git a/scripts/chapter_3_search_chaining/tutorial_5_complex_source.py b/scripts/chapter_3_search_chaining/tutorial_5_complex_source.py index bf01fc3..fae71f7 100644 --- a/scripts/chapter_3_search_chaining/tutorial_5_complex_source.py +++ b/scripts/chapter_3_search_chaining/tutorial_5_complex_source.py @@ -22,9 +22,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autofit as af diff --git a/scripts/chapter_4_pixelizations/tutorial_10_brightness_adaption.py b/scripts/chapter_4_pixelizations/tutorial_10_brightness_adaption.py index 4b0eec5..22ac1a5 100644 --- a/scripts/chapter_4_pixelizations/tutorial_10_brightness_adaption.py +++ b/scripts/chapter_4_pixelizations/tutorial_10_brightness_adaption.py @@ -27,9 +27,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_4_pixelizations/tutorial_11_adaptive_regularization.py b/scripts/chapter_4_pixelizations/tutorial_11_adaptive_regularization.py index b0f8411..62fdf10 100644 --- a/scripts/chapter_4_pixelizations/tutorial_11_adaptive_regularization.py +++ b/scripts/chapter_4_pixelizations/tutorial_11_adaptive_regularization.py @@ -19,9 +19,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_4_pixelizations/tutorial_1_pixelizations.py b/scripts/chapter_4_pixelizations/tutorial_1_pixelizations.py index 381b5f3..fbad604 100644 --- a/scripts/chapter_4_pixelizations/tutorial_1_pixelizations.py +++ b/scripts/chapter_4_pixelizations/tutorial_1_pixelizations.py @@ -15,9 +15,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import autolens as al import autolens.plot as aplt diff --git a/scripts/chapter_4_pixelizations/tutorial_2_mappers.py b/scripts/chapter_4_pixelizations/tutorial_2_mappers.py index 1bc8e49..ce628e2 100644 --- a/scripts/chapter_4_pixelizations/tutorial_2_mappers.py +++ b/scripts/chapter_4_pixelizations/tutorial_2_mappers.py @@ -18,9 +18,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_4_pixelizations/tutorial_3_inversions.py b/scripts/chapter_4_pixelizations/tutorial_3_inversions.py index 6f8377a..4a5b95d 100644 --- a/scripts/chapter_4_pixelizations/tutorial_3_inversions.py +++ b/scripts/chapter_4_pixelizations/tutorial_3_inversions.py @@ -20,9 +20,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_4_pixelizations/tutorial_4_bayesian_regularization.py b/scripts/chapter_4_pixelizations/tutorial_4_bayesian_regularization.py index f0c7c79..74a080b 100644 --- a/scripts/chapter_4_pixelizations/tutorial_4_bayesian_regularization.py +++ b/scripts/chapter_4_pixelizations/tutorial_4_bayesian_regularization.py @@ -23,9 +23,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_4_pixelizations/tutorial_5_borders.py b/scripts/chapter_4_pixelizations/tutorial_5_borders.py index d57d3c7..7c9c601 100644 --- a/scripts/chapter_4_pixelizations/tutorial_5_borders.py +++ b/scripts/chapter_4_pixelizations/tutorial_5_borders.py @@ -17,9 +17,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_4_pixelizations/tutorial_6_lens_modeling.py b/scripts/chapter_4_pixelizations/tutorial_6_lens_modeling.py index d1745f8..f87d689 100644 --- a/scripts/chapter_4_pixelizations/tutorial_6_lens_modeling.py +++ b/scripts/chapter_4_pixelizations/tutorial_6_lens_modeling.py @@ -24,9 +24,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.py b/scripts/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.py index d6e3943..ddd6687 100644 --- a/scripts/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.py +++ b/scripts/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.py @@ -19,9 +19,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/chapter_4_pixelizations/tutorial_9_fit_problems.py b/scripts/chapter_4_pixelizations/tutorial_9_fit_problems.py index f6ea57f..0ea9268 100644 --- a/scripts/chapter_4_pixelizations/tutorial_9_fit_problems.py +++ b/scripts/chapter_4_pixelizations/tutorial_9_fit_problems.py @@ -56,9 +56,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() import autolens as al import autolens.plot as aplt diff --git a/scripts/chapter_optional/tutorial_searches.py b/scripts/chapter_optional/tutorial_searches.py index beac222..28c21eb 100644 --- a/scripts/chapter_optional/tutorial_searches.py +++ b/scripts/chapter_optional/tutorial_searches.py @@ -19,9 +19,9 @@ """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/simulator/lens_sersic.py b/scripts/simulator/lens_sersic.py index 9fa5bcf..8a4cf58 100644 --- a/scripts/simulator/lens_sersic.py +++ b/scripts/simulator/lens_sersic.py @@ -30,9 +30,9 @@ If any code in this script is unclear, refer to the `simulators/start_here.ipynb` notebook. """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/simulator/no_lens_light.py b/scripts/simulator/no_lens_light.py index 1ff2d7b..2d3d052 100644 --- a/scripts/simulator/no_lens_light.py +++ b/scripts/simulator/no_lens_light.py @@ -31,9 +31,9 @@ If any code in this script is unclear, refer to the `simulators/start_here.ipynb` notebook. """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/simulator/no_lens_light__mass_sis.py b/scripts/simulator/no_lens_light__mass_sis.py index 9fc014d..87b2cc0 100644 --- a/scripts/simulator/no_lens_light__mass_sis.py +++ b/scripts/simulator/no_lens_light__mass_sis.py @@ -29,9 +29,9 @@ If any code in this script is unclear, refer to the `simulators/start_here.ipynb` notebook. """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al diff --git a/scripts/simulator/source_complex.py b/scripts/simulator/source_complex.py index 830299c..c66a782 100644 --- a/scripts/simulator/source_complex.py +++ b/scripts/simulator/source_complex.py @@ -33,9 +33,9 @@ If any code in this script is unclear, refer to the `simulators/start_here.ipynb` notebook. """ -from autoconf import jax_wrapper # Sets JAX environment before other imports +from autolens import jax_wrapper # Sets JAX environment before other imports -# from autoconf import setup_notebook; setup_notebook() +# from autolens import setup_notebook; setup_notebook() from pathlib import Path import autolens as al