CamDavidsonPilon / Probabilistic-Programming-and-Bayesian-Methods-for-Hackers

aka "Bayesian Methods for Hackers": An introduction to Bayesian methods + probabilistic programming with a computation/understanding-first, mathematics-second point of view. All in pure Python ;)
http://camdavidsonpilon.github.io/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/
MIT License
26.71k stars 7.88k forks source link

Fix showcase_loss text definition #511

Closed MarcoGorelli closed 3 years ago

MarcoGorelli commented 4 years ago

The text definition shows

return np.abs(true_price - guess - 250)

yet when the function is actually defined, below, it says

loss[~ix] = np.abs(guess - true_price[~ix])
MarcoGorelli commented 3 years ago

:thinking: is this repo still maintained or should I close?

MarcoGorelli commented 3 years ago

closing as this is evidently unmaintained