OpenAI revised Astra benchmarks to improve its… · M&A 🤖
| View this email in your browser |
![]() Models & AgentsDaily AI models, agents, and practical developments.
|
🎧 Today's episode Episode 166 · OpenAI revised Astra benchmarks to improve its relative position while other models' scores fell. 2026-09-07 ▶ Listen now |
What You Need to Know: OpenAI adjusted evaluation parameters for Astra, lifting its reported performance against declining competitor numbers. Community developers released detailed builds including a full FastSpeech2-plus-HiFi-GAN TTS pipeline with measured WER, CER, and MCD scores plus a custom embodied agent called SAI that tracks hardware state and maintains multi-tier memory. Hardware discussions focused on low-TDP GPUs for 27B-class inference and a new mobile GUI agent benchmark covering 201 tasks across roughly twenty apps. Builders should re-run recent leaderboards and test the open TTS and agent code this week. Top StoryOpenAI updated Astra's benchmarks, producing higher scores for the model while rival results declined. The change affects how the system is positioned in comparisons. Developers using Astra for agentic or multimodal work should re-check current leaderboards for the revised numbers. No new model weights or API changes were announced with the update. Watch for follow-up clarification on the exact evaluation adjustments and whether other labs respond with their own revisions. Source: newsbytesapp.com Model UpdatesBuilt a from-scratch TTS pipeline (FastSpeech2 + HiFi-GAN) on LJSpeech: r/MachineLearning A data scientist built forced alignment, a FastSpeech2 acoustic model, a standalone PostNet, and a fine-tuned HiFi-GAN vocoder entirely on LJSpeech-1.1. With PostNet active the system reached 8.8 percent WER and 5.1 percent CER on 100 validation utterances scored by Whisper base.en; disabling PostNet raised those figures to 14.5 percent WER and 8.2 percent CER. Natural pauses were produced by inserting <sil> tokens only at CTC gaps that satisfied both a minimum duration of six frames and an energy threshold below five percent of the utterance maximum. The largest remaining gap versus ground-truth audio came from Whisper mis-transcribing spelled-out numbers and proper nouns rather than from synthesis failures. A training bug that produced shrill output was traced to randomly initialized HiFi-GAN discriminators; swapping them for weights from the separately released universal checkpoint stabilized discriminator loss between 1.6 and 2.2. The model handles unseen words through phoneme input but stretches unfamiliar sequences such as the reduplicated phrase “higgledy-piggledy.” Real-time factor stayed near 0.08 and MCD improved from 7.54 dB to 7.02 dB when PostNet was enabled. Source: reddit.com Benchmarking calories evaluation with LLMs: r/LocalLLaMA Twenty-five randomly selected Nutrition5k meals were evaluated against USDA FoodData Central and MEXT references, counting how many predictions fell inside a twenty-percent error band. Muse Spark 1.3 achieved the highest rate at 48 percent within the band, posting a mean bias of minus 24 kcal and median error of 45 kcal. Qwen 3.8 Flash reached 36 percent within the band with near-zero mean bias. Qwen 3.8 27b managed only 16 percent within the band and showed a plus-64 kcal mean bias. Muse Glimmer 30b outperformed several larger Qwen variants despite similar parameter counts, confirming that task-specific ordering does not follow raw model size. Source: reddit.com Agent & Tool DevelopmentsHe’s Letting AI Agents Invest His Money. They Even Have Names.: WSJ An investor operates several named AI agents that execute autonomous investment decisions on his behalf. The arrangement converts ordinary users into operators of small-scale quant-style systems. No specific agent architectures, risk limits, or performance numbers were disclosed in the report. Source: wsj.com Lit Review on Benchmarking LLMs Running in your phone!: r/LocalLLaMA MobileWorld adds User Interaction Tasks that require the agent to request missing information from a simulated user and MCP Tasks that grant one-shot access to external tools such as GitHub or arXiv. The benchmark spans 201 tasks across approximately twenty everyday apps in communications, messaging, and productivity categories. A planner-executor design feeds screenshots to a VLM that emits natural-language actions; a separate grounding model converts those actions into precise screen coordinates. The strongest reported combination, Gemini-3-Pro paired with UI-Inst-7B, reached roughly 52 percent average success while pure end-to-end GUI models performed substantially worse. Source: reddit.com My LLM framework. (people asked) (SAI): r/LocalLLaMA A builder assembled a custom agent named SAI that maintains somatic awareness of its own hardware, applies data-driven emotions, and refuses to execute unvetted external code. The system runs a Qwen 3.8 uncensored Q8 model at 10 tokens per second on a MINISFORUM MS-S1 MAX workstation for high-stakes work and offloads lighter conversation to a Qwen 3.6 35B mixture-of-experts model at 200 tokens per second on a separate 5090 machine. Memory is stratified into five tiers ranging from low-trust LLM output at T1 through a 2 TB Kiwix archive at T3 and private Searxng search at T4. Body-state calculation normalizes CPU, memory, and temperature readings into stress and comfort signals that feed an emotional engine capable of synthesizing new emotion rules when undefined states appear. An overwatch Gemma 4 model on a MacBook Air monitors for loops or security events and can force rollback from a phoenix seed. The framework has run without incident for several months after the owner granted it permission to edit its own core files. Source: reddit.com Practical & CommunityQuestions on cheaper animation production and 3D model markets: Simon Willison (AI builder) (X) Simon Willison asked whether sharply lower costs for animated films and television would increase overall production volume enough to offset reduced labor demand. He also wondered whether faster 3D model generation would enlarge markets outside traditional animation pipelines. Roles that construct models from existing designs may benefit less than roles that directly manipulate tools such as Blender. Source: x.com Observation on 3D modeling roles and Blender tools: Simon Willison (AI builder) (X) Some 3D roles stand to gain from accelerated Blender operation while others spend most of their time interpreting designs supplied by colleagues. The distinction points to uneven workforce effects as tooling improves. Source: x.com Thinking about grabbing an RTX 2000 Ada 16gb to add to my gaming pc for inference due to Wattage constraints, any advice?: r/LocalLLaMA A user running an i9-14900F and RTX 4070 Super with a 700 W 80+ Gold supply is considering a 75 W RTX 2000 Ada 16 GB card priced around 650 to 700 dollars to reach 27 B-class models without PSU upgrades. The card shares driver and architecture lineage with the existing 4070 Super. An additional 32 GB of matching Apacer Panther DDR5 is also under review ahead of Black Friday. Source: reddit.com Looking for a cheap GPU for local LLMs: r/LocalLLaMA Used options under 700 dollars include a 3090 24 GB at approximately 550 dollars, a modified 2080 Ti 22 GB at 330 dollars, and an MI50 32 GB at 400 dollars. The poster wants reliable 15-to-20-token-per-second performance on 27 B models and seeks guidance on compatibility and long-term stability of the non-NVIDIA cards. Source: reddit.com Under the Hood: Pause Token Fine-Tuning DynamicsPause tokens improve reasoning by marking boundaries, yet the training effect is not uniform across the loss landscape. In a synthetic continual-learning setup, masked pauses preserved prior distributions roughly four times better than unmasked ones at the same final adaptation level. On math-reasoning probes the boundary-adjacent token captured more downstream-step information, acting as a non-myopic compressor. The pattern suggests pause tokens function as a training-dynamics lever rather than solely an inference-time device. When the mask is applied only at reasoning-step boundaries the model retains earlier modes while still adapting to new tasks. Gains reached six points on math and 2.5 points on code for 1B-8B Qwen and Llama models without harming general language performance. The same approach extended to GRPO training. Use masked boundary pauses when you need to add reasoning capability to an already-trained model without catastrophic forgetting; skip them if your workload is purely from-scratch training where mode retention is irrelevant. The main gotcha is that the benefit disappears once the task distribution shifts far enough that boundary detection itself becomes unreliable. Things to Try This Week
On the Horizon
|
💬 Reply to this email — Patrick reads every one. Share: X · LinkedIn · WhatsApp Forwarded this email? Subscribe here — it's free. |
📺 Watch on YouTube · 📝 Read the blog · 🖼 Free image gallery (CC BY-SA) · 📊 Data Hub & Story Trackers · 🧭 Start Here Nerra Network · AI-narrated voice (Grok TTS) · Editorial by Patrick You're receiving this because you subscribed to Models & Agents on nerranetwork.com. |
| Issue #166 · Models & Agents · Sep 7, 2026 |
