Loading video...
Video Failed to Load
Mnist neural network visualization written from scratch in Odin and Raylib. repo: I'm still new to Odin so if you see a way to imporve something, let me know :)
97,754 views • 1 year ago •via X (Twitter)
11 Comments

I've just added some general improvements to an issue: This is just amazing in general though!!!!

Thanks for that :)

Don't use `sort.quick_sort_proc` but rather use `slice.sort_proc`. I'll add a deprecation attribution on that.

bro says new to Odin and made this, gigachad humble king jokes aside love it man, I'll go through the codebase for sure I'll say add the license to this repo, I asked Claude to create one for you so that the college guy doesn't copy it again

Thanks for reminding, added a mit license

this is surprsingly readable, even the viz.odin... interesting

thats one of the reasons why I love Odin, the viz is still a bit messy though

returning error boolean is a bit silly, it's standard to return (ok: bool) which then lets you do or_return and or_else everywhere etc

that's good to know, thanks for pointing that out

For `ui_checkbox`, I'd just return a boolean and not take a callback whatsoever. if ui_checkbox(...) { /* same code as the previous callback */ }

yup, that looks much better than passing a proc
