I just finished familiarizing myself with #Rust with some quick crash course. Took some time as I had to understand what's going on. Now time to dive deep with the Rust programming language book.
Anyway I later enjoyed it after some deep dive. One thing I like about the println is the positional arguments. You can just use the index of the arguments
e.g
println!(
"{0} is from {1} and {0} likes to {2}",
"James", "Uranus", "code"
);
#rustlang
Anyway I later enjoyed it after some deep dive. One thing I like about the println is the positional arguments. You can just use the index of the arguments
e.g
println!(
"{0} is from {1} and {0} likes to {2}",
"James", "Uranus", "code"
);
#rustlang
The dark side of reinforcement learning
@olive_jy_song, senior researcher at @MiniMax_AI, about RL models that try to hack rewards and why alignment fails in practice
This conversation is an inside look at how Chinese AI labs move fast – testing new models overnight, debugging unpredictable behaviors, and operating with relentless first-principles discipline.
Full interview in the comments
#TP_interview
It's often said "we need a theory of deep learning". No one knows what that really means, except there's a sense of hopelessness. We actually have more of an understanding than many realize, and we can analyze modern neural nets. Make an effort to leave the echo chamber!
One thing I have noticed when solving math problems is my brain moves faster than my hands. In the solution steps, I make silly errors like changing a + sign to a - sign.
Accessibility Tip: Avoid using any tag such as <div> in place of buttons. Doing so will force you to add all accessibility features that come built-in with the button tag. You will need to add aria-label, role, tabindex, onkeyup etc.