Urgent.News

What's breaking now, across thousands of outlets.

AI

From API to GPU, Week 6 (Part 2): Watching a Neural Network Learn

Phase 2 of 8: Enough ML to understand inference. Week 6 of 32, part 2 of 2. Part 1 built a one-neuron model that converts Celsius to Fahrenheit, made it predict, and scored how wrong it was with a single number, the loss. With random starting values the loss was 10352.21, because every prediction was nonsense. This post takes that one number and turns it into learning: the weight and bias climb…

Phase 2 of the eight-part series, Week 6 Part 2, explores the neural network learning process. After the first part demonstrated a one-neuron model converting Celsius to Fahrenheit, this post focuses on the learning aspects: weight and bias adjustments, loss minimization, gradient computation, and optimizer steps. The training loop consists of four stages repeated multiple times: forward pass, loss calculation, gradient computation, and optimizer update.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in AI

From API to GPU, Week 6 (Part 1): A Model That Predicts, and How Wrong It Is

Phase 2 of 8: Enough ML to understand inference. Week 6 of 32, part 1 of 2. Every week so far, the model already existed.

  • Model predicts Celsius to Fahrenheit conversions with random weights and biases
  • Training process adjusts weights and biases to minimize prediction error
  • Forward pass compares predictions with actual values to measure error

Agentic AI Is Mostly Marketing. Memory Is the Part That's Real.

Open any 'agentic AI' repo trending on GitHub this month and you'll find the same shape: a while loop, a tool-calling wrapper, a retry policy, and a system prompt that says 'you are an autonomous…

  • Most "agentic AI" in 2026 is automation with chat interface, not truly agentic.
  • Memory allows systems to change behavior over time without human intervention.
  • Many projects add memory as an afterthought, resulting in plateaued performance.

When Should an AI Suggestion Become a Financial Record?

AI can classify an expense, propose a match between a bank transaction and an invoice, or flag an unusual cash-flow pattern. None of those outputs should automatically become accounting truth.

  • Store AI suggestions as immutable artifacts with key information
  • Commit suggestions through domain rules, not just confidence score
  • Maintain separate layers: suggestion, decision, and record layers

I let my own 31B model take over development of the thing running it

Two things I build: Flash , a local coding agent that runs in your terminal. Flash Onyx , the model it runs on. Gemma4 with a system prompt and sampling baked in.

  • Flash Onyx, a 31B model, controls its own development.
  • System prompt and sampling enable operation on Gemma4 architecture.
  • Self-policing mechanism ensures model accountability.

More from Saturday 5 September →