As I am studying Machine Learning I am creating the mind graph à la Daniel Bourke:
https://whimsical.com/K85bjCAHxKg4FZBf3YW7en
## Uncomment the lines below if you have not run it previously
# import Pkg; Pkg.add("Metalhead")
# import Pkg; Pkg.add("QuartzImageIO")
using Metalhead
using Metalhead: classify
vgg = VGG19()
## local file in this lab's folder
image = load("skunk001.jpeg")
classify(vgg, image)
## Uncomment the lines below if you have not run it previously
# import Pkg; Pkg.add("Metalhead")
# import Pkg; Pkg.add("QuartzImageIO")
using Metalhead
using Metalhead: classify
vgg = VGG19()
## local file in this lab's folder
image = load("skunk001.jpeg")
classify(vgg, image)