diff --git a/.github/scripts/smoke_install.sh b/.github/scripts/smoke_install.sh index d649295..f37e1df 100755 --- a/.github/scripts/smoke_install.sh +++ b/.github/scripts/smoke_install.sh @@ -7,10 +7,10 @@ set -e if [ "$PYTHON_VERSION" = "3.12" ]; then - pip install ./PyAutoConf ./PyAutoFit ./PyAutoArray ./PyAutoGalaxy ./PyAutoLens + pip install ./PyAutoNerves ./PyAutoFit ./PyAutoArray ./PyAutoGalaxy ./PyAutoLens pip install "./PyAutoArray[optional]" "./PyAutoGalaxy[optional]" "./PyAutoLens[optional]" else - pip install ./PyAutoConf ./PyAutoFit ./PyAutoArray ./PyAutoGalaxy ./PyAutoLens + pip install ./PyAutoNerves ./PyAutoFit ./PyAutoArray ./PyAutoGalaxy ./PyAutoLens pip install numba fi pip install tensorflow-probability==0.25.0 diff --git a/.github/workflows/smoke_tests.yml b/.github/workflows/smoke_tests.yml index 118fcb8..49c9232 100644 --- a/.github/workflows/smoke_tests.yml +++ b/.github/workflows/smoke_tests.yml @@ -11,5 +11,5 @@ jobs: smoke: uses: PyAutoLabs/PyAutoHeart/.github/workflows/smoke-tests.yml@main with: - chain: "PyAutoConf PyAutoFit PyAutoArray PyAutoGalaxy PyAutoLens" + chain: "PyAutoNerves PyAutoFit PyAutoArray PyAutoGalaxy PyAutoLens" secrets: inherit diff --git a/config/general.yaml b/config/general.yaml index e3e9642..bd467fb 100644 --- a/config/general.yaml +++ b/config/general.yaml @@ -51,7 +51,7 @@ test: version: # The compatibility FLOOR: the oldest library release whose API this # workspace's scripts require. Preferred over workspace_version - # (autoconf/workspace.py). Bump DELIBERATELY — only when a script + # (autonerves/workspace.py). Bump DELIBERATELY — only when a script # starts needing new API — never per release. Must always name an # INSTALLABLE (non-yanked) release. minimum_library_version: 2026.7.9.1 diff --git a/notebooks/chapter_1_introduction/tutorial_0_visualization.ipynb b/notebooks/chapter_1_introduction/tutorial_0_visualization.ipynb index c2a17b1..dc6e4ee 100644 --- a/notebooks/chapter_1_introduction/tutorial_0_visualization.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_0_visualization.ipynb @@ -47,12 +47,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 ffbcbcd..540502b 100644 --- a/notebooks/chapter_1_introduction/tutorial_1_grids_and_galaxies.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_1_grids_and_galaxies.ipynb @@ -91,12 +91,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_1_introduction/tutorial_2_ray_tracing.ipynb b/notebooks/chapter_1_introduction/tutorial_2_ray_tracing.ipynb index b7ccf66..2155779 100644 --- a/notebooks/chapter_1_introduction/tutorial_2_ray_tracing.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_2_ray_tracing.ipynb @@ -99,12 +99,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 24b19a1..6df0257 100644 --- a/notebooks/chapter_1_introduction/tutorial_3_more_ray_tracing.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_3_more_ray_tracing.ipynb @@ -67,12 +67,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_1_introduction/tutorial_4_point_sources.ipynb b/notebooks/chapter_1_introduction/tutorial_4_point_sources.ipynb index 31740b6..a3f9b40 100644 --- a/notebooks/chapter_1_introduction/tutorial_4_point_sources.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_4_point_sources.ipynb @@ -46,12 +46,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_1_introduction/tutorial_5_lensing_formalism.ipynb b/notebooks/chapter_1_introduction/tutorial_5_lensing_formalism.ipynb index 7dcd9a0..8c6bf96 100644 --- a/notebooks/chapter_1_introduction/tutorial_5_lensing_formalism.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_5_lensing_formalism.ipynb @@ -47,12 +47,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_1_introduction/tutorial_6_data.ipynb b/notebooks/chapter_1_introduction/tutorial_6_data.ipynb index 7b71949..a65cb3c 100644 --- a/notebooks/chapter_1_introduction/tutorial_6_data.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_6_data.ipynb @@ -69,12 +69,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_1_introduction/tutorial_7_fitting.ipynb b/notebooks/chapter_1_introduction/tutorial_7_fitting.ipynb index a1cfb23..920b68e 100644 --- a/notebooks/chapter_1_introduction/tutorial_7_fitting.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_7_fitting.ipynb @@ -73,12 +73,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_1_introduction/tutorial_8_summary.ipynb b/notebooks/chapter_1_introduction/tutorial_8_summary.ipynb index bf06c98..805f458 100644 --- a/notebooks/chapter_1_introduction/tutorial_8_summary.ipynb +++ b/notebooks/chapter_1_introduction/tutorial_8_summary.ipynb @@ -58,12 +58,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 2dd1557..8daa419 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 @@ -189,12 +189,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_2_lens_modeling/tutorial_2_practicalities.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_2_practicalities.ipynb index 5e52b66..93bea4d 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_2_practicalities.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_2_practicalities.ipynb @@ -106,12 +106,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 33b19b7..e3ca9bd 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 @@ -65,12 +65,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 a6d592f..9c6fb0f 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 @@ -60,12 +60,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 fca9b72..f98a771 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_5_linear_profiles.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_5_linear_profiles.ipynb @@ -74,12 +74,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 5132d70..72c8c4d 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 @@ -49,12 +49,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_2_lens_modeling/tutorial_7_results.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_7_results.ipynb index 89bf1fd..5bb41a1 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_7_results.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_7_results.ipynb @@ -47,12 +47,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_2_lens_modeling/tutorial_8_need_for_speed.ipynb b/notebooks/chapter_2_lens_modeling/tutorial_8_need_for_speed.ipynb index 0687199..2cfea4a 100644 --- a/notebooks/chapter_2_lens_modeling/tutorial_8_need_for_speed.ipynb +++ b/notebooks/chapter_2_lens_modeling/tutorial_8_need_for_speed.ipynb @@ -114,12 +114,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 69e9fef..6848b48 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_1_search_chaining.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_1_search_chaining.ipynb @@ -81,12 +81,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 f08f369..9af2d28 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_2_prior_passing.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_2_prior_passing.ipynb @@ -54,12 +54,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 8a44d7c..cb34706 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 @@ -82,12 +82,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 6849bf2..d5160b9 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 @@ -56,12 +56,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] 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 d1f6d6c..8ef525c 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_5_complex_source.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_5_complex_source.ipynb @@ -53,12 +53,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_3_search_chaining/tutorial_6_slam.ipynb b/notebooks/chapter_3_search_chaining/tutorial_6_slam.ipynb index 74c2df6..fdc52a4 100644 --- a/notebooks/chapter_3_search_chaining/tutorial_6_slam.ipynb +++ b/notebooks/chapter_3_search_chaining/tutorial_6_slam.ipynb @@ -75,12 +75,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_10_brightness_adaption.ipynb b/notebooks/chapter_4_pixelizations/tutorial_10_brightness_adaption.ipynb index 6f64992..d184e73 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_10_brightness_adaption.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_10_brightness_adaption.ipynb @@ -58,12 +58,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_11_adaptive_regularization.ipynb b/notebooks/chapter_4_pixelizations/tutorial_11_adaptive_regularization.ipynb index 76c9273..995359c 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_11_adaptive_regularization.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_11_adaptive_regularization.ipynb @@ -50,12 +50,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb b/notebooks/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb index 67c45f8..44dcb28 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb @@ -46,12 +46,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_2_mappers.ipynb b/notebooks/chapter_4_pixelizations/tutorial_2_mappers.ipynb index bb91ec5..21a45d7 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_2_mappers.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_2_mappers.ipynb @@ -49,12 +49,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_3_inversions.ipynb b/notebooks/chapter_4_pixelizations/tutorial_3_inversions.ipynb index 31b0373..83ad2e9 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_3_inversions.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_3_inversions.ipynb @@ -51,12 +51,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb b/notebooks/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb index 131e4cc..678b1fe 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb @@ -54,12 +54,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_5_borders.ipynb b/notebooks/chapter_4_pixelizations/tutorial_5_borders.ipynb index 0d35ee4..5fa8ed5 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_5_borders.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_5_borders.ipynb @@ -48,12 +48,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_6_lens_modeling.ipynb b/notebooks/chapter_4_pixelizations/tutorial_6_lens_modeling.ipynb index d0c8b57..9747aaf 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_6_lens_modeling.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_6_lens_modeling.ipynb @@ -55,12 +55,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.ipynb b/notebooks/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.ipynb index ad69139..6e1fda6 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_7_adaptive_pixelization.ipynb @@ -50,12 +50,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_8_model_fit.ipynb b/notebooks/chapter_4_pixelizations/tutorial_8_model_fit.ipynb index 60a9687..b3950ed 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_8_model_fit.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_8_model_fit.ipynb @@ -44,12 +44,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_4_pixelizations/tutorial_9_fit_problems.ipynb b/notebooks/chapter_4_pixelizations/tutorial_9_fit_problems.ipynb index c89a09e..7633051 100644 --- a/notebooks/chapter_4_pixelizations/tutorial_9_fit_problems.ipynb +++ b/notebooks/chapter_4_pixelizations/tutorial_9_fit_problems.ipynb @@ -87,12 +87,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/chapter_optional/tutorial_searches.ipynb b/notebooks/chapter_optional/tutorial_searches.ipynb index bfa05ee..e2e9b76 100644 --- a/notebooks/chapter_optional/tutorial_searches.ipynb +++ b/notebooks/chapter_optional/tutorial_searches.ipynb @@ -50,12 +50,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/simulator/lens_sersic.ipynb b/notebooks/simulator/lens_sersic.ipynb index 46f9a59..a4ced82 100644 --- a/notebooks/simulator/lens_sersic.ipynb +++ b/notebooks/simulator/lens_sersic.ipynb @@ -62,12 +62,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/simulator/lens_x2.ipynb b/notebooks/simulator/lens_x2.ipynb index 3eb645f..8fca2a0 100644 --- a/notebooks/simulator/lens_x2.ipynb +++ b/notebooks/simulator/lens_x2.ipynb @@ -70,12 +70,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/simulator/no_lens_light.ipynb b/notebooks/simulator/no_lens_light.ipynb index d1d92e4..658087b 100644 --- a/notebooks/simulator/no_lens_light.ipynb +++ b/notebooks/simulator/no_lens_light.ipynb @@ -63,12 +63,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/simulator/no_lens_light__mass_sis.ipynb b/notebooks/simulator/no_lens_light__mass_sis.ipynb index 4699d5b..36d794e 100644 --- a/notebooks/simulator/no_lens_light__mass_sis.ipynb +++ b/notebooks/simulator/no_lens_light__mass_sis.ipynb @@ -61,12 +61,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/notebooks/simulator/source_complex.ipynb b/notebooks/simulator/source_complex.ipynb index 32ea71b..635fb1d 100644 --- a/notebooks/simulator/source_complex.ipynb +++ b/notebooks/simulator/source_complex.ipynb @@ -65,12 +65,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ] diff --git a/start_here.ipynb b/start_here.ipynb index 9782543..1aa04ca 100644 --- a/start_here.ipynb +++ b/start_here.ipynb @@ -81,12 +81,12 @@ " import sys\n", "\n", " subprocess.check_call(\n", - " [sys.executable, \"-m\", \"pip\", \"install\", \"autoconf\", \"--no-deps\"]\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"autonerves\", \"--no-deps\"]\n", " )\n", "except ImportError:\n", " pass\n", "\n", - "from autoconf import setup_colab\n", + "from autonerves import setup_colab\n", "\n", "setup_colab.setup(\"howtolens\")" ]