diff --git a/README.md b/README.md index 9a4b7335..bc44194e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# AutoEmulate +# AutoEmulate ![CI](https://github.com/alan-turing-institute/autoemulate/actions/workflows/ci.yaml/badge.svg) [![codecov](https://codecov.io/gh/alan-turing-institute/autoemulate/graph/badge.svg?token=XD1HXQUIGK)](https://codecov.io/gh/alan-turing-institute/autoemulate) @@ -19,7 +19,7 @@ There's lots of development at the moment, so we recommend installing the most c pip install git+https://github.com/alan-turing-institute/autoemulate.git ``` -There's also a release onPyPI: +There's also a release on PyPI: ```bash pip install autoemulate @@ -46,16 +46,16 @@ lhd = LatinHypercube([(-5., 1.), (0., 1000.)]) X = lhd.sample(100) y = np.array([simulate_projectile(x) for x in X]) -# compare emulator models +# compare emulators ae = AutoEmulate() ae.setup(X, y) best_emulator = ae.compare() -# training set cross-validation results +# cross-validation results ae.summarise_cv() ae.plot_cv() -# test set results for the best model +# test set results for the best emulator ae.evaluate(best_emulator) ae.plot_eval(best_emulator) diff --git a/pyproject.toml b/pyproject.toml index e1665cf6..4a1c2114 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "autoemulate" -version = "0.2.0" +version = "0.2.2" description = "A python package for semi-automated emulation" license = "MIT" authors = ["Martin Stoffel ", @@ -11,6 +11,7 @@ authors = ["Martin Stoffel ", "Eric Daub ", "Steve Niederer "] readme = "README.md" +include = ["misc/AE_logo_final.png"] [tool.poetry.dependencies] python = ">=3.10,<3.13"