Transformer
Search documents
速递|OpenAI 日本竞争对手 Sakana 正洽谈以 25 亿美元估值融资
Z Potentials· 2025-10-22 02:38
Core Insights - Sakana AI, a Tokyo-based AI developer, is negotiating to raise $100 million at a valuation of $2.5 billion, reflecting a 66% increase from the previous year's funding round [2] - The CEO, David Ha, has publicly stated that the company aims to achieve profitability within a year [2] - Sakana's AI technology differs from that of OpenAI, Anthropic, and Google, focusing on local language and cultural nuances [2][3] Funding and Investment - The company has previously raised a total of $230 million and is backed by major Japanese financial institutions, tech giants like Fujitsu and NEC, and U.S. venture capital firms such as NEA, Khosla Ventures, and Lux Capital [3] - After the new funding round, Sakana's valuation will rise to $2.6 billion, with plans to use the funds to expand its engineering and sales teams [2][3] Competitive Landscape - Sakana faces competition from U.S. AI developers who are expanding into Japan, including OpenAI, which has partnered with SoftBank to invest $3 billion annually in AI technology [3][4] - Other competitors like Anthropic and Canadian company Cohere are also establishing a presence in Japan [4] Technological Approach - Sakana aims to challenge the traditional Transformer architecture by developing AI inspired by natural concepts such as evolution [5] - The company recently released an open-source software called "ShinkaEvolve," which combines LLMs with an algorithm to generate and filter potential solutions more efficiently than traditional methods [7] Strategic Partnerships - Sakana has secured partnerships with major Japanese corporations, including a multi-year collaboration with Mitsubishi UFJ Financial Group to develop customized AI solutions [7] - The company has also announced a similar agreement with Daiwa Securities Group, further solidifying its position in the Japanese market [7]
Karpathy泼冷水:AGI要等10年,根本没有「智能体元年」
3 6 Ke· 2025-10-21 02:15
Core Insights - Andrej Karpathy discusses the future of AGI and AI over the next decade, emphasizing that current "agents" are still in their early stages and require significant development [1][3][4] - He predicts that the core architecture of AI will likely remain similar to Transformer models, albeit with some evolution [8][10] Group 1: Current State of AI - Karpathy expresses skepticism about the notion of an "agent era," suggesting it should be termed "the decade of agents" as they still need about ten years of research to become truly functional [4][5] - He identifies key issues with current agents, including lack of intelligence, weak multimodal capabilities, and inability to operate computers autonomously [4][5] - The cognitive limitations of these agents stem from their inability to learn continuously, which Karpathy believes will take approximately ten years to address [5][6] Group 2: AI Architecture and Learning - Karpathy predicts that the fundamental architecture of AI will still be based on Transformer models in the next decade, although it may evolve [8][10] - He emphasizes the importance of algorithm, data, hardware, and software system advancements, stating that all are equally crucial for progress [12] - The best way to learn about AI, according to Karpathy, is through hands-on experience in building systems rather than theoretical approaches [12] Group 3: Limitations of Current Models - Karpathy critiques current large models for their fundamental cognitive limitations, noting that they often require manual coding rather than relying solely on AI assistance [13][18] - He categorizes coding approaches into three types: fully manual, manual with auto-completion, and fully AI-driven, with the latter being less effective for complex tasks [15][18] - The industry is moving too quickly, sometimes producing subpar results while pretending to achieve significant advancements [19] Group 4: Reinforcement Learning Challenges - Karpathy acknowledges that while reinforcement learning is not perfect, it remains the best solution compared to previous methods [22] - He highlights the challenges of reinforcement learning, including the complexity of problem-solving and the unreliability of evaluation models [23][24] - Future improvements may require higher-level "meta-learning" or synthetic data mechanisms, but no successful large-scale implementations exist yet [26] Group 5: Human vs. Machine Learning - Karpathy contrasts human learning, which involves reflection and integration of knowledge, with the current models that lack such processes [28][30] - He argues that true intelligence lies in understanding and generalization rather than mere memory retention [30] - The future of AI should focus on reducing mechanical memory and enhancing cognitive processes similar to human learning [30] Group 6: AI's Role in Society - Karpathy views AI as an extension of computation and believes that AGI will be capable of performing any economically valuable task [31] - He emphasizes the importance of AI complementing human work rather than replacing it, suggesting a collaborative approach [34][36] - The emergence of superintelligence is seen as a natural extension of societal automation, leading to a world where understanding and control may diminish [37][38]
哈工大孟维康:让注意力有 “棱角”|Attention
3 6 Ke· 2025-10-20 07:58
Core Insights - The article discusses the evolution and challenges of Linear Attention in the context of Vision Transformers, highlighting the need for improved efficiency and performance in AI models [1][2][3]. Group 1: Linear Attention Challenges - Linear Attention faces two main issues: the distribution of attention weights becomes too flat, reducing model sharpness, and the use of non-negative kernel functions leads to the loss of negative interaction information [2][9]. - The traditional Self-Attention mechanism has high computational costs and energy consumption, making it difficult for smaller teams and companies to compete [1][2]. Group 2: PolaFormer Innovation - PolaFormer introduces a dual-stream architecture that separates positive and negative interactions, allowing for independent processing of these relationships [4][6][10]. - The model employs a learnable channel-wise power function to enhance the sharpness of attention distributions, aiming to recover the expressiveness of Softmax Attention while maintaining efficiency [6][10][20]. Group 3: Experimental Validation - Extensive experiments demonstrate that PolaFormer effectively replaces Self-Attention in Vision Transformer frameworks, showing significant performance improvements across various tasks such as object detection, semantic segmentation, and long sequence benchmarks [7][31]. - The model's design allows it to maintain stable performance across different input types, including short texts and long sequences, without losing global information [9][29]. Group 4: Future Applications and Implications - PolaFormer is expected to enhance applications in long-sequence and high-resolution scenarios, such as video processing and large language models, by providing a more efficient solution without compromising performance [31][32]. - The research emphasizes the importance of co-designing algorithms with hardware to address deployment challenges, particularly in resource-constrained environments [30][31].
手撕大模型,KVCache 原理及代码解析
自动驾驶之心· 2025-10-20 06:30
Core Insights - The article discusses the importance of KV Cache in enhancing the efficiency of large language models (LLMs) during autoregressive inference, particularly in the context of the Transformer architecture [1][20]. Group 1: Need for KV Cache - KV Cache is essential for storing intermediate computation results, which significantly improves the model's operational efficiency during text generation tasks [1][20]. - In standard Transformer decoding, each new token generation requires attention calculations that involve all previous tokens, leading to high computational complexity [2][6]. Group 2: Working Principle of KV Cache - The core idea of KV Cache is to cache the historical Key (K) and Value (V) matrices, thus avoiding redundant calculations and reducing time complexity from O(n²) to O(n) [4][7]. - The process involves calculating the new Query (Q) matrix and performing attention calculations with the cached K and V matrices, allowing for efficient token generation [4][10]. Group 3: Technical Details of KV Cache - KV Cache typically maintains independent caches for each attention head, with the cache structure dynamically growing until it reaches the model's maximum sequence length [11]. - While KV Cache improves speed, it requires additional memory, with models like GPT-3 consuming approximately 20KB of memory per token, leading to significant memory usage during batch processing [12]. Group 4: Optimization Strategies for KV Cache - Strategies such as Paged KV Cache, dynamic cache management, quantization, and selective caching are employed to enhance the efficiency of KV Cache while managing memory usage [22][18]. Group 5: Code Implementation - The article provides a code example demonstrating the implementation of KV Cache in self-attention mechanisms using PyTorch, highlighting the modifications needed to incorporate caching [14][17]. Group 6: Conclusion - Understanding the workings of KV Cache is crucial for optimizing inference performance in large models and addressing challenges in practical deployment [20].
浙大提出Translution:统一Self-attention和Convolution,ViT、GPT架构迎来新一轮性能突破
AI科技大本营· 2025-10-14 08:17
Core Insights - The article discusses the introduction of a new deep neural network operation called Translution, which combines the adaptive modeling advantages of Self-Attention with the relative position modeling capabilities of Convolution, allowing for a unified approach to capturing representations that are intrinsically related to the data structure rather than absolute positions [1][5]. Group 1: Performance Improvements - Experimental results indicate that neural networks built on Translution have shown performance enhancements in both ViT and GPT architectures, suggesting a broad range of application prospects [3]. - In the context of natural language modeling tasks, models based on Translution have outperformed those using Self-Attention [4]. Group 2: Technical Details - The core idea behind Translution is to transform the "fixed weight kernel" of convolution operations into a "dynamic adaptive kernel" generated by the self-attention mechanism, addressing the limitations of current Transformer models [5]. - The performance metrics from the experiments show that Translution achieves lower perplexity scores compared to traditional Self-Attention methods across various architectures, indicating improved efficiency and effectiveness [4]. Group 3: Industry Implications - As the demand for larger models continues to grow, the limitations of merely increasing network parameters and training data have become apparent, leading to the need for innovative neural network designs like Translution to sustain the growth of deep learning [5]. - However, the advanced capabilities of Translution come with increased computational requirements, particularly in GPU memory, which may exacerbate the existing disparities in access to AI resources within the industry [6].
Flash Attention作者最新播客:英伟达GPU统治三年内将终结
量子位· 2025-09-29 04:57
Group 1 - The core argument is that Nvidia's dominance in the GPU market will face increasing competition within the next 2-3 years as specialized chips for different workloads emerge, leading to a more diversified ecosystem [6][9][23] - Tri Dao emphasizes that the architecture for AI models, particularly the Transformer, is stabilizing, but there are still ongoing changes and challenges in chip design and workload adaptation [11][12][21] - The future of AI workloads will include three main types: traditional chatbots, ultra-low latency scenarios, and large-scale batch processing, which will require tailored optimizations from hardware vendors [24][96] Group 2 - The cost of inference has decreased by approximately 100 times since the launch of ChatGPT, driven by improvements in model efficiency and inference optimization techniques [73][75][90] - Techniques such as model quantization and collaborative design between model architecture and hardware have significantly contributed to this cost reduction [82][84][88] - There is still an estimated potential for a further 10-fold improvement in inference optimization, particularly through specialized hardware and model advancements [90][93][95] Group 3 - The AI hardware landscape is expected to diversify as companies like Cerebras, Grok, and SambaNova introduce solutions that emphasize low-latency inference and high throughput for various applications [23][24][96] - The emergence of specialized AI inference providers will lead to different trade-offs, with some focusing on broad coverage while others aim for excellence in specific scenarios [96][97] - The evolution of AI workloads will continue to drive demand for innovative solutions, particularly in real-time video generation and agentic applications that require seamless integration with human tools [117][115][120]
The First Transformable Dual-Screen Gaming Handheld Is $700
CNET· 2025-09-24 04:16
I wanted to especially if I wanted to pop this screen under. No. >> Let's say yes.>> But what a device. Plus, it's very cool. >> The 1x sugar.Yeah, it's nice to play with a transformer. ...
谢赛宁回忆七年前OpenAI面试:白板编程、五小时会议,面完天都黑了
机器之心· 2025-08-29 09:53
Core Insights - The article discusses the unique interview experiences of AI researchers at major tech companies, highlighting the differences in interview styles and the focus areas of these companies [1][9][20]. Group 1: Interview Experiences - Lucas Beyer, a researcher with extensive experience at top AI firms, initiated a poll about memorable interview experiences at companies like Google, Meta, and OpenAI [2][20]. - Saining Xie shared that his interviews at various AI companies were unforgettable, particularly noting the rigorous two-hour marathon interview at DeepMind, which involved solving over 100 math and machine learning problems [5][6]. - The interview process at Meta was described as more academic, focusing on discussions with prominent researchers rather than just coding [6][7]. Group 2: Company-Specific Insights - The interview style at Google Research was likened to an academic job interview, with a significant emphasis on research discussions rather than solely on coding challenges [7]. - OpenAI's interview process involved a lengthy session focused on a reinforcement learning problem, showcasing the company's commitment to deep research engagement [8][9]. - The article notes that the interview questions reflect the research priorities of these companies, such as Meta's focus on computer vision and OpenAI's emphasis on reinforcement learning [9][20]. Group 3: Notable Interviewers and Candidates - Notable figures like John Schulman and Noam Shazeer were mentioned as interviewers, indicating the high caliber of talent involved in the hiring processes at these firms [7][9]. - Candidates shared memorable moments from their interviews, such as solving complex problems on napkins or engaging in deep discussions about research topics [19][20].
新一轮智驾PK,迈入实战时刻
Hu Xiu· 2025-08-27 10:38
Core Viewpoint - The recent surge in advancements in intelligent driving technology is driven by several key factors, leading to a new competitive landscape in the industry [2][3][20]. Group 1: Industry Dynamics - Major players in the intelligent driving sector have recently launched their latest capabilities, reminiscent of past industry waves driven by end-to-end models [2][3]. - The competition has intensified due to regulatory pressures and public sentiment, which have delayed some companies' planned releases [6][20]. - Companies are prioritizing the release of "basic versions" of their technologies to avoid being outpaced by competitors [6][20]. Group 2: Technological Advancements - The VLA model has surpassed the capabilities of previous end-to-end models, with its lower limits exceeding the upper limits of earlier technologies [3][5]. - The transition from CNN to Transformer technology has significantly enhanced the model's ability to mimic human cognitive processes [8][10]. - The VLA model incorporates a chain of thought (CoT) capability, allowing for more logical and reliable decision-making in complex driving scenarios [11][12]. Group 3: Model Features and Performance - The VLA model's architecture is designed to handle perception, reasoning, and action execution, making it more suitable for intelligent driving applications compared to previous models [9][10]. - The model's ability to analyze and respond to potential risks has improved, enabling it to exhibit a form of "defensive driving" akin to human behavior [12][13][17]. - The VLA model can interpret traffic signs and respond to verbal commands, enhancing user interaction and operational efficiency [17][20]. Group 4: Future Outlook - The VLA model is still in the optimization phase, with significant improvements needed to fully realize its CoT capabilities [18][19]. - The industry is expected to focus on data collection and refining the performance of intelligent driving models in the coming period [19][20]. - The cost of implementing VLA technology varies, with higher-end models being more adaptable, while lower-cost models may require further optimization [20].
DiT突遭怒喷,谢赛宁淡定回应
量子位· 2025-08-20 07:48
Core Viewpoint - The article discusses the recent criticisms of the DiT (Diffusion Transformers) model, which is considered a cornerstone in the diffusion model field, highlighting the importance of scientific scrutiny and empirical validation in research [3][10]. Group 1: Criticism of DiT - A user has raised multiple concerns about DiT, claiming it is flawed both mathematically and in its structure, even questioning the presence of Transformer elements in DiT [4][12]. - The criticisms are based on a paper titled "TREAD: Token Routing for Efficient Architecture-agnostic Diffusion Training," which introduces a strategy that allows early-layer tokens to be passed to deeper layers without modifying the architecture or adding parameters [12][14]. - The critic argues that the rapid decrease in FID (Fréchet Inception Distance) during training indicates that DiT's architecture has inherent properties that allow it to easily learn the dataset [15]. - The Tread model reportedly trains 14 times faster than DiT after 400,000 iterations and 37 times faster at its best performance after 7 million iterations, suggesting that significant performance improvements may undermine previous methods [16][17]. - The critic also suggests that if parts of the network are disabled during training, it could render the network ineffective [19]. - It is noted that the more network units in DiT that are replaced with identity mappings during training, the better the model evaluation results [20]. - The architecture of DiT is said to require logarithmic scaling to represent the signal-to-noise ratio differences during the diffusion process, indicating potential issues with output dynamics [23]. - Concerns are raised regarding the Adaptive Layer Normalization method, suggesting that DiT processes conditional inputs through a standard MLP (Multi-Layer Perceptron) without clear Transformer characteristics [25][26]. Group 2: Response from Xie Saining - Xie Saining, the author of DiT, responded to the criticisms, asserting that the Tread model's findings do not invalidate DiT [27]. - He acknowledges the Tread model's contributions but emphasizes that its effectiveness is due to regularization enhancing feature robustness, not because DiT is incorrect [28]. - Saining highlights that Lightning DiT, an upgraded version of DiT, remains a powerful option and should be prioritized when conditions allow [29]. - He also states that there is no evidence to suggest that the post-layer normalization in DiT causes issues [30]. - Saining summarizes improvements made over the past year, focusing on internal representation learning and various methods for enhancing model training [32]. - He mentions that the sd-vae (stochastic depth variational autoencoder) is a significant concern for DiT, particularly regarding its high computational cost for processing images at 256×256 resolution [34].