Workflow
开源算法
icon
Search documents
小米通报两起汽车起火事件;2025年我国商业航天发射50次
Group 1: Technology Developments - Elon Musk announced the open-sourcing of the recommendation algorithm for the X platform (formerly Twitter), stating that the algorithm is based on the same Transformer architecture as xAI's Grok model, and aims for transparency in improvements [2] - Alibaba Cloud introduced several new products at the PolarDB developer conference, including an AI data lake and model operator capabilities, emphasizing the "AI-ready database" concept with over 20,000 users and 3 million cores deployed globally [2] - WeChat projected that by 2025, global cross-border and overseas users will utilize mini-programs 5 billion times, with cross-border payments covering 78 countries and supporting 36 currencies [3] Group 2: Corporate Announcements - TCL and Sony signed a memorandum of understanding to establish a joint venture in the home entertainment sector, with TCL holding 51% and Sony 49%, aiming for a legally binding agreement by March 2026 [8] - GuoDun Quantum announced plans to sign a technology implementation license contract with the University of Science and Technology of China, involving multiple patents and proprietary technologies [9] - Yu Minhong appointed Chen Xingjia as a consultant for New Oriental Education, with an annual salary of 1.5 million RMB, and pledged annual donations to the Henghui Public Welfare Foundation [10] Group 3: Mergers and Acquisitions - Kailong High-Tech is planning to acquire control of Jinwangda, with shares suspended from trading starting January 21, 2026, as the transaction may constitute a major asset restructuring [14] - Yifan Transmission announced plans to purchase 87.07% of Beijing Helishi Electric Technology, which will become a subsidiary and enhance the company's competitive strength [15] - Kangxin New Materials intends to acquire 51% of Wuxi Yubang Semiconductor for 392 million RMB, marking a strategic shift towards the semiconductor industry [16]
刚刚!马斯克把 X 推荐算法底裤给开源了
程序员的那些事· 2026-01-20 11:37
Core Viewpoint - The company has announced the open-sourcing of its recommendation algorithm for X, aiming to enhance transparency and invite community collaboration in its optimization efforts [1]. Group 1: Algorithm Overview - The recommendation algorithm consists of components such as Home Mixer, Thunder, and Phoenix, focusing on sorting information from "followed accounts" and "content mined from the web" using a Grok-based Transformer model [3]. - A notable feature of the algorithm is the elimination of all manually designed features and heuristic rules, relying solely on the model to learn correlations from user interaction history [5]. Group 2: Algorithm Functionality - The algorithm's workflow involves capturing user behavior data, sourcing candidate content from two channels, and applying data augmentation and multi-round filtering to predict user engagement probabilities (likes, shares, etc.), ultimately calculating a final score for content presentation [5]. - The implementation of X's recommendation algorithm is done using Rust and Python, and it is licensed under the Apache-2.0 license. As of now, it has received 1.1k stars and 195 forks on GitHub [5].
欧洲考虑抛售万亿美元资产,三大期指齐跌;X平台正式开源推荐算法;英伟达、亚马逊跌超3%;黄金首次站上4700美元【美股盘前】
Mei Ri Jing Ji Xin Wen· 2026-01-20 10:59
Group 1 - Major stock indices futures are experiencing declines, with Dow futures down 1.64%, S&P 500 futures down 1.82%, and Nasdaq futures down 2.25% [1] - European countries are considering retaliatory measures, including the potential sale of trillions of dollars in assets, in response to the U.S. imposing a 10% tariff on eight European nations [1] - Chinese concept stocks are also declining, with Alibaba down 2.53%, Pinduoduo down 3.79%, and Trip.com down 1.14% [1] Group 2 - Bank of America has raised its target price for IBM from $315 to $335, maintaining a "buy" rating, citing strong free cash flow prospects and an increase in high-margin software business [2] - AppLovin's stock fell over 10% following a short report from CapitalWatch, which alleged connections to money laundering activities [2] Group 3 - Gold prices have reached a new high, with spot gold at $4,732.85 per ounce and futures at $4,741.54 per ounce, while silver also hit a historical high of $95.5 per ounce [3] - BHP has raised its copper production forecast for the fiscal year 2026, despite a 4% year-on-year decline in current quarter copper production [3] Group 4 - The social media platform X, owned by Elon Musk, has officially open-sourced its new algorithm, which is based on the same Transformer architecture as the Grok model from xAI [4]
马斯克开源推荐算法,完全基于AI大模型
Sou Hu Cai Jing· 2026-01-20 09:16
Core Insights - Elon Musk announced that the core algorithm for the social platform's "For You feed" has been officially open-sourced [12] - The algorithm retrieves, ranks, and filters posts from two main sources: Thunder (posts from accounts users follow) and Phoenix Retrieval (posts discovered from a global corpus) [12] - The algorithm utilizes a Grok-based Transformer model to merge and rank content, predicting the adoption probability of each post [12] System Architecture - The system relies entirely on a Grok-based Transformer to learn relevance from user interaction sequences, eliminating the need for manual feature engineering [6] - Candidate models are isolated during the Transformer inference process, ensuring that post scores do not depend on the content of other posts in the batch, which guarantees score consistency and cacheability [7] - Multiple hash functions are used for embedding lookups in both retrieval and ranking processes [8] Prediction and Scoring - The model predicts multiple behavior probabilities rather than a single "relevance" score, enhancing the understanding of user engagement [9] - The final score for each post is a weighted combination of predicted adoption probabilities, with higher scores indicating a stronger recommendation for users [12] Pipeline Architecture - The candidate-pipeline framework provides a flexible structure for building recommendation pipelines, separating pipeline execution and monitoring from business logic [10] - It allows for parallel execution of independent stages and graceful error handling, facilitating the addition of new sources, hydration, filters, and scoring components [10]