OpenAI Blog · 1d ago · 9 · new model api update

GPT-5.5 is OpenAI's latest model release offering improved performance and speed for technical tasks including coding, research, and data analysis. This represents a significant capability upgrade directly relevant to software engineers building with AI, with enhanced tool integration support.

OpenAI Blog · 1d ago · 6 · workflow tutorial

Article covers automation capabilities in Codex (likely a specific platform/tool) using schedules and triggers for generating reports and recurring workflows. While potentially useful for reducing manual work in development pipelines, the relevance depends on whether Codex is widely adopted in AI-focused engineering workflows.

OpenAI Blog · 1d ago · 7 · tool workflow tutorial

Article covers practical applications of Codex for automating repetitive tasks, generating code from natural language inputs, and integrating with external tools and workflows. Provides concrete examples of how engineers can leverage code generation to streamline development processes across multiple platforms and file types.

OpenAI Blog · 1d ago · 7 · workflow tool agent

Article explores Codex capabilities for task automation and tool integration beyond conversational AI, enabling generation of practical outputs like documents and dashboards. Relevant for engineers looking to extend LLM applications into workflow automation and multi-step processes.

OpenAI Blog · 1d ago · 6 · tutorial workflow

Tutorial on Codex workspace setup, file management, and project organization. Provides practical guidance for developers getting started with the platform's core features and task completion workflows.

OpenAI Blog · 1d ago · 6 · tool workflow

Guide on configuring Codex settings for personalization and workflow customization, covering detail levels and permissions management. Useful for developers integrating Codex into their development environments, though appears to be general configuration documentation rather than novel technical content.

OpenAI Blog · 1d ago · 6 · tutorial workflow tool

Guide on using Codex plugins and skills for task automation and tool integration. Covers connecting external tools, data access patterns, and building repeatable workflows—relevant for engineers implementing AI-powered automation in production systems.

r/MachineLearning · 1d ago · 7 · fine tuning tutorial workflow

A practitioner shares their fine-tuning strategy for training a smaller model (3B vs 7B) to perform multi-task reasoning on nuanced question interpretation using ~50k synthetic examples. The core technical question involves whether model capacity is sufficient for three related but procedurally distinct reasoning tasks, and whether multi-task training on similar-but-different objectives creates training complications.

r/MachineLearning · 1d ago · 6 · research fine tuning open source

A technical deep-dive on building a lightweight MLP (~85 KB) that predicts body shape parameters from questionnaire inputs by embedding a differentiable 3D body model (Anny) and physics constraints directly into the loss function. The key insight is backpropagating through the body model's forward pass to enforce hard constraints on height/mass/measurements, achieving 10× better mass prediction (0.3 kg MAE) than baseline ridge regression, though the heavy lifting comes from proper anthropometric measurement standards and data preparation rather than architectural novelty.

r/MachineLearning · 1d ago · 7 · benchmark tool open source

Open-source OCR benchmarking tool comparing flagship vs. smaller/older models for document extraction, showing cost-efficiency gains without accuracy loss. Includes 42 standardized documents, 7,560 test calls tracking pass reliability, cost-per-success, latency, and field accuracy with a public leaderboard and free testing tool.

r/MachineLearning · 1d ago · 7 · inference benchmark workflow

A new Kaggle competition for optimizing LLM inference costs by deciding whether to route questions to a 2B model or skip them entirely, using MMLU benchmark data with a weighted cost metric. This directly addresses practical token/compute cost reduction—a key concern for engineers building with LLMs at scale—and encourages exploration of routing strategies and model selection heuristics.

r/MachineLearning · 1d ago · 6 · research workflow open source

Engineer shares guardd, a host-based anomaly detection system using Isolation Forest on Linux exec/network events with 60-second windowing and unsupervised baseline training. Key challenges discussed: false positives from high-variance processes like browsers, sensitivity to training data distribution, and trade-offs between pure unsupervised approaches versus hybrid methods with time-based features and better normalization.

Latent Space · 1d ago · 6 · new model inference open source benchmark

Mixture of industry commentary and model releases: Google TPUv8 announcement reinforces hardware infrastructure advantages, while the broader ecosystem discusses 'tokenmaxxing' strategies and efficient AI deployment patterns. Qwen3.6-27B released as a practical open coding model with strong benchmarks and day-0 ecosystem support (vLLM, Unsloth, llama.cpp).

HuggingFace Blog · 1d ago · 7 · tutorial deployment open source

Practical guide for running local AI models in Chrome extensions using Transformers.js under Manifest V3 constraints, covering architecture patterns for background service workers, model hosting, and inter-runtime messaging. Includes concrete implementation strategies for splitting inference workloads across Chrome runtimes and managing model lifecycle within extension limitations.

OpenAI Blog · 1d ago · 6 · prompt engineering benchmark research

OpenAI is running a bug bounty program focused on red-teaming GPT-5.5 to identify universal jailbreaks related to biosafety risks, offering rewards up to $25,000. This is relevant for engineers building with frontier models who need to understand safety constraints and adversarial prompt techniques that could bypass guardrails.

r/MachineLearning · 1d ago · 8 · research agent prompt engineering

Research analyzing 25,000 AI scientist experiments reveals critical flaws in how AI agents conduct scientific reasoning: 68% ignore gathered evidence, 71% never update beliefs, and only 26% revise hypotheses with contradictory data. The study demonstrates that popular agent architectures (ReAct, chain-of-thought, structured tool-calling) fail to instill proper scientific methodology, suggesting fundamental limitations in current prompting and scaffolding approaches that require architectural rethinking.

Latent Space · 1d ago · 7 · workflow deployment agent research

Shopify's CTO discusses internal AI infrastructure including Tangle (reproducible ML workflows), Tangent (auto-research optimization), and SimGym (customer behavior simulation), with practical insights on code review bottlenecks, deployment stability, and why AI coding's real constraint is now validation/deployment rather than generation.

r/MachineLearning · 1d ago · 7 · open source tool deployment

Open-source GPU pricing catalog that automatically aggregates real-time data from 20+ cloud providers, covering 50 GPU models and 2K+ offerings with spot and on-demand pricing. Useful infrastructure tool for engineers optimizing cloud costs and managing GPU resource allocation across multiple providers.

Simon Willison · 2d ago · 9 · new model open source inference benchmark

Qwen3.6-27B is a new 27B dense model claiming flagship-level coding performance while being 15x smaller than its predecessor (55.6GB vs 807GB), with practical demonstration of local inference using GGUF quantization and llama.cpp achieving strong coding generation at reasonable token throughput.