There is an error in tutorials about the Variational inference

Variational inference (VI) in Turing.jl
Copy-paste from 5. Linear regression¶
“remove_names = filter(x->!in(x, [:MPG, :Model]), names(data))” has an error
should be replace by “remove_names = filter(x->!in(x, [“MPG”, “Model”]),
names(data))” names(data) is vector of string not symbol

Hi,

best is probably to report it via their issue tracker on github, or even better directly make a pull request that fixes this. The relevant code is here: TuringTutorials/09_variational-inference.jmd at master · TuringLang/TuringTutorials · GitHub