Your curated collection of saved posts and media

Showing 32 posts · last 14 days · by score
U
UnslothAI
@UnslothAI
📅
May 11, 2026
75d ago
🆔72161097

We’re excited to share that Unsloth has joined the PyTorch Ecosystem! Unsloth is an open-source project that makes training & running models faster, more accurate with less compute. We want AI to be accessible to all Blog: https://t.co/viXIukVHnU GitHub: https://t.co/aZWYAtakBP https://t.co/7DBBpeyIot

Media 1Media 2
+1 more
🖼️ Media
P
PyTorch
@PyTorch
📅
May 11, 2026
75d ago
🆔34532312

Facing the computational chemistry trade-offs between accuracy and speed? Machine learning interatomic potentials (MLIPs) have emerged as a bridge, offering quantum accuracy at classical speeds. NVIDIA has introduced a collection of GPU-accelerated simulation building blocks that are designed to manage the data flow between accelerated chemistry and materials domain-specific kernels and deep learning models. NVIDIA ALCHEMI Toolkit extends beyond individual models and kernels to provide a modular, PyTorch-native structure for researchers and developers to compose custom simulation workflows. 🔗 Read the full post: https://t.co/jZ4LsGpva0 #PyTorch #OpenSourceAI #AI #Inference #Innovation

Media 1
🖼️ Media
S
SakanaAILabs
@SakanaAILabs
📅
Apr 25, 2026
91d ago
🆔68293639

What if instead of building one giant AI, we evolved a coordinator to orchestrate a diverse team of specialized AIs? 🐟 Excited to share our new paper: “TRINITY: An Evolved LLM Coordinator”, published as a conference paper at #ICLR2026! Paper: https://t.co/Pr1TT15iqa In nature, complex problems are rarely solved by a single monolithic entity, but rather by the coordinated efforts of specialized individuals working together. Yet, modern AI development is heavily focused on endlessly scaling up single, massive monolithic models, yielding diminishing returns. While model merging offers a way to combine different skills, it is often impractical due to mismatched neural architectures and the closed-source nature of top-performing models. To address this, we took a macro-level approach: test-time model composition. We introduce TRINITY, a system that fuses the complementary strengths of diverse, state-of-the-art models without needing to modify their underlying weights. TRINITY processes queries over multiple turns. At each step, a lightweight coordinator assigns one of three distinct roles to an LLM from its available pool: 1/ Thinker: Devises high-level strategies and analyzes the current state. 2/ Worker: Executes concrete problem-solving steps. 3/ Verifier: Evaluates if the current solution is complete and correct. By dynamically assigning these roles, the coordinator effectively offloads complex reasoning and skill execution onto the external models. What makes TRINITY unique is its extreme efficiency. The coordinator relies on the hidden states of a compact language model and a small routing head. In total, it has fewer than 20K learnable parameters. Training this system presented a massive challenge. Traditional Reinforcement Learning (REINFORCE) failed because the gradients had a low signal-to-noise ratio due to binary rewards and weak parameter coupling. Imitation learning (Supervised Fine-Tuning) was ruled out because generating multi-turn labels is prohibitively expensive. Our solution? We turned to nature-inspired algorithms. We optimized the coordinator using a derivative-free evolutionary algorithm. We found that evolution is uniquely suited to optimize this tight, high-dimensional coordination problem where traditional gradient-based methods fail. The results are very promising. In our experiments, TRINITY consistently outperforms existing multi-agent methods and individual models across various benchmarks. At the time of publication, it set a new state-of-the-art record on LiveCodeBench, achieving an 86.2% pass@1 score. More importantly, it demonstrated incredible generalization. Without any retraining, TRINITY transferred zero-shot to four unseen tasks (AIME, BigCodeBench, MT-Bench, and GPQA). On average, the evolved coordinator surpassed every individual constituent model in its pool, including GPT-5, Gemini 2.5-Pro, and Claude-4-Sonnet (the top frontier models available at the time of our #ICLR2026 submission last year). This work is central to Sakana AI's vision. We believe the future of AI isn't just about scaling monolithic models, but engineering collaborative, diverse AI ecosystems that can adapt and combine their strengths. We invite the community to read the paper and explore these ideas! Paper: https://t.co/Pr1TT15iqa OpenReview: https://t.co/mbSP1aFCv7 This foundational research is part of the core engine powering our multi-agent product: Sakana Fugu 🐡👇

@

Media 1
🖼️ Media
H
hardmaru
@hardmaru
📅
Apr 26, 2026
91d ago
🆔52335923

Scaling massive monolithic LLMs continues to yield incredible results. But to truly unlock their ceiling, the next frontier is test-time compute and dynamic orchestration. Nature solves complex problems through collaborative ecosystems. In our new #ICLR2026 paper, we evolved a small coordinator. Instead of competing with the monoliths, it orchestrates them. It learns to dynamically assign Thinker, Worker, and Verifier roles to a pool of frontier models—combining their strengths to hit SOTA on LiveCodeBench. This research is part of the engine powering our new product: Sakana Fugu https://t.co/ucZJke5ZaX 🐡

@SakanaAILabs • Sat Apr 25 23:24

What if instead of building one giant AI, we evolved a coordinator to orchestrate a diverse team of specialized AIs? 🐟 Excited to share our new paper: “TRINITY: An Evolved LLM Coordinator”, published as a conference paper at #ICLR2026! Paper: https://t.co/Pr1TT15iqa In nature,

Media 1
🖼️ Media
H
hardmaru
@hardmaru
📅
Apr 26, 2026
90d ago
🆔79099718

TRINITY: An Evolved LLM Coordinator https://t.co/5sSaKjUG8N https://t.co/pFXyONzNjK

Media 1
🖼️ Media
S
SakanaAILabs
@SakanaAILabs
📅
Apr 27, 2026
89d ago
🆔63639741

Introducing our new work: “Learning to Orchestrate Agents in Natural Language with the Conductor” accepted at #ICLR2026 https://t.co/Wnh9ZACmLm What if we trained an AI not to solve problems directly, but to act as a manager that delegates tasks to a diverse team of other AIs? To solve complex tasks, humans rarely work alone; we form teams, delegate, and communicate. Yet, multi-agent AI systems currently rely heavily on rigid, human-designed workflows or simple routers that just pick a single model. We wanted an AI that could dynamically build its own team. We trained a 7B Conductor model using Reinforcement Learning to orchestrate a pool of frontier models (including GPT-5, Gemini, Claude, and open-source models available during the period leading up to ICLR 2026). Instead of executing code, the Conductor outputs a collaborative workflow in natural language. For any given question, the Conductor specifies: 1/ Which agent to call 2/ What specific subtask to give them (acting as an expert prompt engineer) 3/ What previous messages they can see in their context window Through pure end-to-end reward maximization, amazing behaviors emerged. The Conductor learned to adapt to task difficulty: it 1-shots simple factual questions, but autonomously spins up complex planner-executor-verifier pipelines for hard coding problems. The results are very promising: The 7B Conductor surpasses the performance of every individual worker model in its pool, setting new records on LiveCodeBench (83.9%) and GPQA-Diamond (87.5%) at the time of publication. It also significantly outperforms expensive multi-agent baselines like Mixture-of-Agents at a fraction of the cost. One of our favorite features: Recursive Test-Time Scaling! By allowing the Conductor to select itself as a worker, it reads its own team's prior output, realizes if it failed, and spins up a corrective workflow on the fly. This opens a new axis for scaling compute during inference. This research proves that language models can become elite meta-prompt engineers, dynamically harnessing collective intelligence. Alongside our TRINITY research which we announced a few days earlier, this foundational research powers our new multi-agent system: Sakana Fugu! (https://t.co/36Ud311KCP) 🐡 OpenReview: https://t.co/e5WqTleQNL (ICLR 2026)

@

Media 1Media 2
🖼️ Media
H
hardmaru
@hardmaru
📅
Apr 27, 2026
89d ago
🆔35795338

For the past few years, humans have been doing “prompt engineering” to coax the best performance out of different LLMs. In this work, we explored what happens if we train an AI to do that job instead. By training a Conductor model with RL, we found that it naturally learns to write highly effective, custom instructions for a whole pool of other models. It essentially learns to ‘manage’ them in natural language. What surprised me most was how it dynamically adapts. For simple factual questions, it just queries one model. But for hard coding problems, it autonomously spins up a whole pipeline of planners, coders, and verifiers. Really excited to see where this paradigm of “AI managing AI” goes next, especially as we start moving from single-agent chain-of-thought to multi-agent “chain-of-command”. Link to our #ICLR2026 paper: https://t.co/EwbjjRPLUb Along with our TRINITY paper which we announced earlier, this work also powers our new multi-agent system: Sakana Fugu (https://t.co/2m8VRdOYqG) 🐡

@SakanaAILabs • Mon Apr 27 14:54

Introducing our new work: “Learning to Orchestrate Agents in Natural Language with the Conductor” accepted at #ICLR2026 https://t.co/Wnh9ZACmLm What if we trained an AI not to solve problems directly, but to act as a manager that delegates tasks to a diverse team of other AIs?

Media 1
🖼️ Media
H
hardmaru
@hardmaru
📅
Apr 28, 2026
88d ago
🆔61635041

Learning to Orchestrate Agents in Natural Language with the Conductor Fugu Blog: https://t.co/7idk8sOsoU Paper: https://t.co/Xh7r5XAbkN 🐡 https://t.co/X7dxaeNUhp

Media 1
🖼️ Media
S
SakanaAILabs
@SakanaAILabs
📅
Apr 29, 2026
87d ago
🆔33764755

We’re excited to introduce KAME: Tandem Architecture for Enhancing Knowledge in Real-Time Speech-to-Speech Conversational AI, accepted at #ICASSP2026! 🐢 Blog https://t.co/arVz1TGpJJ Paper https://t.co/0EwpyRXeCs Can a speech AI think deeply without pausing to process? In real conversation, we don’t wait until we’ve fully worked out what we want to say—we start talking, and our thoughts catch up as the sentence unfolds. Fast speech-to-speech models achieve this, but their reasoning tends to stay shallow. Cascaded pipelines that route through a knowledgeable LLM are smarter, but the added latency breaks the flow—they fall back to "think, then speak." In our new paper, we propose a way to break this trade-off. We call it KAME (Turtle in Japanese). A speech-to-speech model handles the fast response loop and starts replying immediately. In parallel, a backend LLM runs asynchronously, generating response candidates that are continuously injected as "oracle" signals in real time. This shifts the AI paradigm from "think, then speak" to "speak while thinking." The backend LLM is completely swappable. You can plug in GPT-4.1, Claude Opus, or Gemini 2.5 Flash depending on the task without changing the frontend. In our experiments, Claude tended to score higher on reasoning, while GPT did better on humanities questions. Try the model yourself here: https://t.co/uDA0nvvjhS

Media 2
🖼️ Media
S
SakanaAILabs
@SakanaAILabs
📅
Apr 30, 2026
86d ago
🆔27123402

Sakana AIは、SMBCグループと共同で「提案書自動生成アプリケーション」を開発。三井住友銀行にて実務への適用を開始します。 https://t.co/LW9DPEf8Tu 複数の「AIエージェント」が自律的に連携し、情報収集から仮説構築、提案構成までを支援。日本を支える基幹産業のDXを、独自の技術で強力に 後押しします。 2025年のパートナーシップ締結以来、検討を重ねてきた成果がいよいよ「実装フェーズ第一号」として形になりました。Sakana AIは、今後も最先端技術の社会実装を次々と実現していきます。

Media 1Media 2
🖼️ Media
T
toyamacitykanko
@toyamacitykanko
📅
May 02, 2026
84d ago
🆔74530985

GWの富山。 新緑の先に、まだ雪の立山連峰。 https://t.co/aa1WwoIOmn

Media 1
🖼️ Media
🔁hardmaru retweeted
T
富山市観光協会
@toyamacitykanko
📅
May 02, 2026
84d ago
🆔74530985

GWの富山。 新緑の先に、まだ雪の立山連峰。 https://t.co/aa1WwoIOmn

Media 1
❤️3,528
likes
🔁364
retweets
🖼️ Media
A
almmaasoglu
@almmaasoglu
📅
May 02, 2026
84d ago
🆔86473246

If Japan built Github https://t.co/JCLnYqqmgK

@

Media 1
🖼️ Media
H
hardmaru
@hardmaru
📅
May 03, 2026
83d ago
🆔45545850

If GitHub were built in: Japan 🇯🇵 China 🇨🇳 North Korea 🇰🇵 The EU 🇪🇺 https://t.co/LNMt3QxpBQ

@almmaasoglu • Sat May 02 15:47

If Japan built Github https://t.co/JCLnYqqmgK

Media 1Media 2
+2 more
🖼️ Media
H
hardmaru
@hardmaru
📅
May 03, 2026
83d ago
🆔36751350

@SakanaAILabs Sakana Fugu: A Multi-Agent Orchestration System as a Foundation Model https://t.co/mtCq1eKpzk

Media 1
🖼️ Media
S
SakanaAILabs
@SakanaAILabs
📅
May 08, 2026
78d ago
🆔36990029

How do we make LLMs faster and lighter? Don’t force the GPU to adapt to sparsity. Reshape the sparsity to fit the GPU! ⚡️ Excited to share our new #ICML2026 paper in collaboration with @NVIDIA: "Sparser, Faster, Lighter Transformer Language Models". This work introduces new open-source GPU kernels and data formats for faster inference and training of sparse transformer language models: Paper: https://t.co/3Avj8N8iYO Blog: https://t.co/SqFkkKvkbd Code: https://t.co/PHSzMq8pg0 While LLMs are undoubtedly powerful, they are increasingly expensive to train and deploy, with a large part of this cost coming from their feedforward layers. Yet, an interesting phenomenon occurs inside these layers: For any given token, only a small fraction of the hidden activations actually matter. The rest approximate zero, wasting computation. With ReLU and very mild L1 regularization, this sparsity can exceed 95% with little to no impact on downstream performance. So, can we leverage this sparsity to make LLMs faster? The challenge is hardware. Modern GPUs are optimized for dense matrix multiplications. Traditional sparse formats introduce irregular memory access and overheads that cancel out their theoretical savings for GEMM operations. Our contribution is twofold: 1/ We introduce TwELL (Tile-wise ELLPACK), a new sparse packing format designed to integrate directly in the same optimized tiled matmul kernels without disrupting execution. 2/ We develop custom CUDA kernels that fuse multiple sparse matmuls to maximize throughput and compress TwELL to a hybrid representation that minimizes activation sizes. We used our kernels to train and benchmark sparse LLMs at billion-parameter scales, demonstrating >20% speedups and even higher savings in peak memory and energy. This work will be presented at #ICML2026. Please check out our blog and technical paper for a deep dive!

Media 1Media 2
🖼️ Media
H
hardmaru
@hardmaru
📅
May 08, 2026
78d ago
🆔44099293

The human brain🧠 is incredibly efficient because it only activates the specific neurons needed for a thought. Modern LLMs naturally try to do this too (> 95% of neurons in feedforward layers stay silent for any given word), but our hardware punishes them for it. One of the most frustrating paradoxes in deep learning: making a model do less math often makes it run slower. Why? Because unstructured sparsity introduces irregular memory access, and GPUs are built for predictable, dense blocks of math. We teamed up with @NVIDIA to try to fix this hardware mismatch. Instead of forcing the GPU to adapt to the sparsity, we built a "Hybrid" format that reshapes the sparsity to fit the GPU. Our sparsity format (TwELL) dynamically routes the 99% of highly sparse tokens through a fast path, and uses a dense backup matrix as a safety valve for the rare, heavy tokens. Through TwELL and a new set of custom CUDA kernels for both LLM inference and training, we translated theoretical sparsity into actual wall-clock speedups: >20% faster training and inference on H100 GPUs, while also cutting energy consumption and memory requirements. Paper: https://t.co/rqIY9SYBDe Blog: https://t.co/oRjNbpJKha Code: https://t.co/FAFaJwpxAJ ⚡️

@SakanaAILabs • Fri May 08 16:26

How do we make LLMs faster and lighter? Don’t force the GPU to adapt to sparsity. Reshape the sparsity to fit the GPU! ⚡️ Excited to share our new #ICML2026 paper in collaboration with @NVIDIA: "Sparser, Faster, Lighter Transformer Language Models". This work introduces new open

Media 1
🖼️ Media
H
hardmaru
@hardmaru
📅
May 09, 2026
78d ago
🆔80969221

If you want to look under the hood at the actual custom CUDA kernels and see exactly how we implemented the TwELL format for H100 GPUs, we’ve released the reference code. GitHub: https://t.co/FAFaJwpxAJ Blog: https://t.co/oRjNbpJKha 🐟

Media 1
🖼️ Media
H
hardmaru
@hardmaru
📅
May 09, 2026
77d ago
🆔28178315

Reproducing all of Schmidhuber’s papers (1990-2025) using an AI coding assistant. Cool project by @yaroslavvb! It even reproduced the “World Models” paper by me and @SchmidhuberAI with a toy env, with a full VAE + RNN world model implementation. Project: https://t.co/sgQG5umNEm https://t.co/iKMFN7ti9z

Media 1
🖼️ Media
S
sherryyangML
@sherryyangML
📅
Apr 21, 2026
95d ago
🆔30562300

Machine learning engineering (MLE) is the new agentic frontier. I'll be sharing our work on scaling RL for MLE agents at #ICLR2026: 1) RL of a small model outperforms a frontier model https://t.co/vfk1jc76t5 2) MLE-Smith: scale-up MLE tasks automatically https://t.co/Mc5vyY2fhg https://t.co/fpCcvyBvAU

Media 1Media 2
🖼️ Media
W
WentaoGuo7
@WentaoGuo7
📅
Apr 22, 2026
94d ago
🆔47766951

🚀SonicMoE🚀now runs at peak throughput on NVIDIA Blackwell GPUs 😃 54% & 35% higher fwd/bwd TFLOPS than the DeepGEMM baseline and 21% higher fwd TFLOPS than the triton official example. SonicMoE still maintains its minimum activation memory footprint: the same as a dense model with equal activated parameters and independent of expert granularity. We wrote a blogpost on how we leveraged Blackwell features and the software abstraction on QuACK: Work with @MayankMish98, @XinleC295, @istoica05, @tri_dao

Media 1
🖼️ Media
Y
ysu_nlp
@ysu_nlp
📅
Apr 21, 2026
95d ago
🆔15413037

Introducing @NeoCognition, the agent lab for specialized intelligence. Everyone needs experts, but human expertise does not scale. Backed by $40M seed funding, we build self-learning agents that specialize across domains to make expertise abundant. https://t.co/Oh4VawqlwP

🖼️ Media
L
LukeBailey181
@LukeBailey181
📅
Apr 23, 2026
93d ago
🆔90724945

Self-play led to superhuman Go performance, why hasn’t it for LLMs? In practice, long run self-play plateaus like RL. We study why this happens, and build a self-play algorithm that scales better. It solves as many problems with a 7B model as the pass@4 of a model 100x bigger. https://t.co/zFH6vICnul

Media 1
🖼️ Media
K
kellerjordan0
@kellerjordan0
📅
May 01, 2026
85d ago
🆔62412218

New modded-NanoGPT optimization benchmark result: @wen_kaiyue has improved upon both the Muon and AdamW baselines, by replacing their weight decay with hyperball optimization. The new record is 3325 steps. https://t.co/8hitPuZmU7

Media 1
🖼️ Media
W
wen_kaiyue
@wen_kaiyue
📅
May 01, 2026
85d ago
🆔11344419

Playing with an optimizer speedrun is something that never gets old. Built on top of https://t.co/n7gbPOCTPT and Claude should take all the credit for hypertl tuning.

@kellerjordan0 • Fri May 01 16:56

New modded-NanoGPT optimization benchmark result: @wen_kaiyue has improved upon both the Muon and AdamW baselines, by replacing their weight decay with hyperball optimization. The new record is 3325 steps. https://t.co/8hitPuZmU7

Media 1
🖼️ Media
🔁percyliang retweeted
W
Kaiyue Wen
@wen_kaiyue
📅
May 01, 2026
85d ago
🆔11344419

Playing with an optimizer speedrun is something that never gets old. Built on top of https://t.co/n7gbPOCTPT and Claude should take all the credit for hypertl tuning.

Media 1
❤️131
likes
🔁16
retweets
🖼️ Media
K
kenziyuliu
@kenziyuliu
📅
May 05, 2026
81d ago
🆔12615401

Had a great time discussing AI user privacy on @augmind_fm 😃 One discussion I’d like to highlight from the chat is that what constitutes the "Privacy Problem" has been shifting as AI progresses. It used to be that we care a lot about *training-time* user privacy: what gets trained into the model, and what the model would spit out. Say you take an LLM and a book (or any piece of sensitive text). We cared about whether the book would be regurgitated ("memorization"); whether you can remove such a book from the model ("unlearning"); and whether you can detect the book being trained ("membership inference"). And as part of mitigating these problems, we work on training-time techniques like differential privacy, careful data cleaning, and model alignment/guardrails (in ~increasing order of adoption). Guardrails seem to work well enough that people don’t really talk about sensitive model outputs anymore. What’s more pressing today, I argue, is *inference-time* user privacy: the fact that intelligent models are served at scale on private user data, which are then centrally managed at model providers. Intelligent models mean that user profiling is now cheap and automatic; your activities can be continuously analyzed to reveal new sensitive insights. Whether your data is trained on or not became less relevant. Having a "digital clone" of you by building on your memory/personalization is now way more profitable. The threat vector changed from the model misbehaving to the provider misbehaving. Because of this, the techniques to improve user privacy would look different than before. They’ll look less like fancy learning algorithms (e.g. RL to steer model to output paraphrase of a book than the original book), and more like *peripheral systems* sitting around closed models that we do not control but still want to access. The OA project (https://t.co/rOAoavIavT) is an example: you could build a zero-knowledge proxy to mediate AI inference and combat surveillance, and leverage smaller models to help users build personal memory on-device. This is not to say that there’s no room for training; you just train for different things, and on auxiliary models than the closed models. thank you so much to @EchoShao8899 @michaelryan207 @shannonzshen for hosting me!

@augmind_fm • Mon May 04 19:49

“In the past, with social media or web search, you are like, here are some specific keywords, here are some posts that I am okay to share with the world; whereas with AI, it feels like you are private, it feels like you are talking to an entity that won’t reveal your information.

Media 1
🖼️ Media
Z
ZRChen_AISafety
@ZRChen_AISafety
📅
May 09, 2026
77d ago
🆔05052534

AI agents are already going wild, but today’s red-teaming tools for them are still like toys 😢 🔥👽 After spending 20 months and $120K API credits, we are excited to finally open-source DecodingTrust-Agent Platform (DTap): the first controllable, realistic simulation platform for advanced AI agent red-teaming !! 🌍 DTap simulates 50+ real-world environments across 14 high-stakes domains, with realistic agent interfaces replicated from their official MCPs and GUIs. The environments are full-stack, interactive, fully parallelizable, and can be easily configured to reproduce arbitrary real-world attack scenarios, making agent red-teaming scalable and highly transferable to deployment settings. 🔥We also release DTap-Bench, a large-scale benchmark with ~7K agent red-teaming tasks and ~4K policy-grounded malicious goals. Each red-teaming task includes a sophisticated attack sequence across environment-, tool-, skill-, prompt-level injections, as well as their compositions, plus a handcrafted verifiable judge that checks the actual consequences in the environment. Using DTap-Bench, we evaluate popular agent frameworks and backbone models across diverse policies, risks, threat models, and attack strategies, revealing systematic vulnerabilities and zero-days in today’s agents! Paper link: https://t.co/PjnGC5wKk9 Platform + benchmark + code: https://t.co/aicipKMnig Join our Discord: https://t.co/8UyRjH6RqX Read more below 👇

Media 1Media 2
🖼️ Media
W
WilliamBarrHeld
@WilliamBarrHeld
📅
May 11, 2026
75d ago
🆔80462453

To train better open models, we need predictable scaling. Delphi is Marin’s first step: we pretrained many small models with one recipe, then extrapolated 300× to predict a 25B-param / 600B-token run with just 0.2% error. Getting there took some work 🧵 https://t.co/HmlVFl11ag

🖼️ Media
S
SpirosMargaris
@SpirosMargaris
📅
May 10, 2026
76d ago
🆔88317285

Even the biggest tech companies are struggling to keep pace internally with the AI race. Amazon reportedly had to open access to competing coding tools after employees pushed back on relying solely on its in-house solution. That says a lot about the current market. In AI, performance matters more than ecosystem loyalty. https://t.co/NO9PRvhank @futurism

Media 1
🖼️ Media
S
SpirosMargaris
@SpirosMargaris
📅
May 10, 2026
76d ago
🆔49067642

AI may eventually remove most language barriers. But something important could be lost in the process. Language is not just a tool for exchanging information. It carries culture, emotion, humor and ways of seeing the world. Perfect translation may make communication easier while making cultural discovery shallower. https://t.co/8Bw2XzYc9p

Media 1
🖼️ Media
S
SpirosMargaris
@SpirosMargaris
📅
May 10, 2026
76d ago
🆔65483463

The AI boom may become this generation’s “China shock.” But instead of transforming global manufacturing, it could reshape knowledge work, productivity and economic power. The gains could be enormous. So could the disruption. https://t.co/LplPGs4a32 @fortunemagazine @sashrogel

Media 1
🖼️ Media
← PreviousPage 341 of 1004Next →