Chapter 10 Image classification

cd("./10_bees_vs_wasps/") 
import Pkg
Pkg.activate(".")


using Images
using Plots
using ImageMagick

    #plot(load("10_bees_vs_wasps/images/venn.png"),axis=nothing)

 plot(ImageMagick.load("10_bees_vs_wasps/images/venn.png"),axis=nothing,border=:none,size=(402,264))

Conv((3, 3), 1=>32, pad=(1,1), relu)
Conv((3, 3), 1=>32, pad=(1,1), relu)

10.1 The Ultima Online Catastrophe

10.1.1 The Lotka-Volterra model for population dynamics

10.1.1.1 Parentheses on differential equations

10.1.1.2 Returning to LotkaVolterra

10.1.1.3 SciML to simulate population dynamics

10.1.1.4 Obtaining the model from the data

10.1.1.5 Visualizing the results

10.1.1.6 The virtual catastrophe

10.2 Summary

10.3 References

10.4 Give us feedback