FluxML / fluxml.github.io

Flux Website
https://fluxml.ai
MIT License
20 stars 45 forks source link

Error when running Getting Started example #137

Closed iliailmer closed 1 year ago

iliailmer commented 1 year ago

Hi, I encountered an error when calling params when going over the Getting Started example here.

The lines that caused my error were from step 6:

ps = params(W, b)

Which can be fixed via

ps = Flux.params(W, b)

I am unsure where the source of this doc is so that I could submit a PR for this. I ran it on Julia-1.8.0-rc4, Apple Silicon Mac.

Saransh-cpp commented 1 year ago

Hi, @iliailmer! Here is the markdown file - https://github.com/FluxML/fluxml.github.io/blob/main/getting_started.md!

iliailmer commented 1 year ago

I will close this issue (resolved with #138 ), thanks for the pointer to the source file!