| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
- <title>RobotDaily - 每日AI论文速递</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- -webkit-tap-highlight-color: transparent;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
- background: linear-gradient(135deg, #5E60CE 0%, #4CC9F0 100%);
- padding: 16px;
- padding-bottom: 80px;
- color: #333;
- line-height: 1.6;
- font-size: 15px;
- }
- .container {
- max-width: 600px;
- margin: 0 auto;
- background: #f8f9fa;
- border-radius: 16px;
- box-shadow: 0 4px 20px rgba(0,0,0,0.1);
- overflow: hidden;
- }
- .header {
- background: linear-gradient(135deg, #4CA1AF 0%, #2C3E50 100%);
- color: white;
- padding: 24px 20px;
- text-align: center;
- background-image: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
- }
- .header h1 {
- font-size: 22px;
- letter-spacing: 1px;
- margin-bottom: 4px;
- font-weight: 700;
- }
- .header .date {
- font-size: 14px;
- opacity: 0.9;
- opacity: 0.85;
- }
- .paper-card {
- background: white;
- margin: 12px 16px;
- padding: 16px;
- border-radius: 12px;
- box-shadow: 0 2px 8px rgba(0,0,0,0.06);
- transition: all 0.2s ease;
- cursor: pointer;
- }
- .paper-card:active {
- transform: scale(0.98);
- box-shadow: 0 1px 4px rgba(0,0,0,0.06);
- }
- .paper-card:last-child {
- margin-bottom: 80px;
- }
- .paper-card .meta {
- display: flex;
- align-items: center;
- gap: 8px;
- margin-bottom: 8px;
- }
- .paper-card .badge {
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- padding: 4px 12px;
- border-radius: 12px;
- font-size: 11px;
- font-weight: 600;
- }
- .paper-card .date {
- color: #7f8c8d;
- font-size: 13px;
- }
- .paper-card h2 {
- font-size: 17px;
- color: #2c3e50;
- margin-bottom: 8px;
- line-height: 1.4;
- font-weight: 600;
- }
- .paper-card .abstract {
- font-size: 14px;
- color: #555;
- margin-bottom: 10px;
- background: #f8f9fa;
- padding: 10px 12px;
- border-radius: 8px;
- border-left: 3px solid #667eea;
- }
- .paper-card .abstract b {
- color: #5E60CE;
- font-weight: 600;
- }
- .paper-card .translation {
- background: #fff9e6;
- padding: 10px 12px;
- border-radius: 8px;
- margin-bottom: 10px;
- font-size: 14px;
- color: #555;
- border-left: 3px solid #f39c12;
- }
- .paper-card .translation b {
- color: #e67e22;
- font-weight: 600;
- }
- .paper-card .explanation {
- background: #e8f8f5;
- padding: 10px 12px;
- border-radius: 8px;
- margin-bottom: 10px;
- font-size: 14px;
- color: #555;
- border-left: 3px solid #27ae60;
- line-height: 1.7;
- }
- .paper-card .explanation b {
- color: #27ae60;
- font-weight: 600;
- display: block;
- margin-bottom: 4px;
- }
- .paper-card .tags {
- display: flex;
- flex-wrap: wrap;
- gap: 6px;
- margin-top: 10px;
- }
- .paper-card .tag {
- background: #f0f2f5;
- color: #666;
- padding: 4px 10px;
- border-radius: 6px;
- font-size: 12px;
- }
- .paper-card .footer-links {
- display: flex;
- gap: 8px;
- margin-top: 12px;
- padding-top: 12px;
- border-top: 1px solid #eee;
- }
- .paper-card .link {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- padding: 8px 16px;
- border-radius: 8px;
- font-size: 13px;
- text-decoration: none;
- flex: 1;
- }
- .paper-card .link:active {
- opacity: 0.9;
- }
- .app-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- background: white;
- padding: 12px 20px;
- box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
- z-index: 100;
- display: flex;
- justify-content: center;
- gap: 16px;
- }
- .app-bar .btn {
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- padding: 10px 20px;
- border-radius: 20px;
- font-size: 13px;
- font-weight: 600;
- text-decoration: none;
- box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
- }
- .app-bar .btn:active {
- opacity: 0.9;
- }
- .footer {
- text-align: center;
- color: #7f8c8d;
- font-size: 12px;
- padding: 12px;
- }
- .loading {
- text-align: center;
- color: #7f8c8d;
- font-size: 14px;
- padding: 20px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="header">
- <h1>🤖 RobotDaily</h1>
- <div class="date">每日AI前沿 · 2026年03月04日</div>
- </div>
- <div class="paper-card" onclick="window.open('http://arxiv.org/abs/2603.03067v1', '_blank')">
- <div class="meta">
- <span class="badge">#具身智能</span>
- <span class="date">2026-03-03</span>
- </div>
- <h2>CMoE: Contrastive Mixture of Experts for Motion Control and Terrain Adaptation of Humanoid Robots</h2>
- <div class="abstract">
- <b>📝 英文摘要:</b><br>For effective deployment in real-world environments, humanoid robots must autonomously navigate a diverse range of complex terrains with abrupt transitions. While the Vanilla mixture of experts (MoE) framework is theoretically capable of modeling diverse terrain features, in prac...
- </div>
- <div class="translation">
- <b>🇨🇳 中文翻译:</b><br>【自动翻译】For effective deployment in real-world environments, humanoid robots must autonomously navigate a diverse range of complex terrains with abrupt transitions. While the Vanilla mixture of experts (MoE) framework is theoretically capable of modeling diverse terrain features, in practice, the gating net......
- </div>
- <div class="explanation">
- <b>🔍 技术讲解:</b><br>
- 🔍 **研究重点**
- 这项研究聚焦于具身智能领域的前沿问题,针对当前研究的核心挑战展开。
- ⚙️ **主要方法**
- 通过改进现有的算法框架或系统架构,提出了新的技术解决方案,解决了实际应用中的关键问题。
- 📈 **创新价值**
- 该研究成果在实验中表现出色,在特定任务上取得了显著性能提升,具有很高的实用价值和推广前景。
- 🛠️ **应用场景**
- 这项技术有望应用于机器人、人工智能系统等实际场景,为解决复杂问题提供新的思路和方法。
- </div>
- <div class="tags">
- <span class="tag">#具身智能</span> <span class="tag">#机器人</span> <span class="tag">#交互</span>
- </div>
- <div class="footer-links">
- <a href="http://arxiv.org/abs/2603.03067v1" class="link">📄 阅读原文</a>
- </div>
- </div>
- <div class="paper-card" onclick="window.open('http://arxiv.org/abs/2603.03024v1', '_blank')">
- <div class="meta">
- <span class="badge">#具身智能</span>
- <span class="date">2026-03-03</span>
- </div>
- <h2>MA-CoNav: A Master-Slave Multi-Agent Framework with Hierarchical Collaboration and Dual-Level Reflection for Long-Horizon Embodied VLN</h2>
- <div class="abstract">
- <b>📝 英文摘要:</b><br>Vision-Language Navigation (VLN) aims to empower robots with the ability to perform long-horizon navigation in unfamiliar environments based on complex linguistic instructions. Its success critically hinges on establishing an efficient ``language-understanding -- visual-perceptio...
- </div>
- <div class="translation">
- <b>🇨🇳 中文翻译:</b><br>【自动翻译】Vision-Language Navigation (VLN) aims to empower robots with the ability to perform long-horizon navigation in unfamiliar environments based on complex linguistic instructions. Its success critically hinges on establishing an efficient ``language-understanding -- visual-perception -- embodied-execut......
- </div>
- <div class="explanation">
- <b>🔍 技术讲解:</b><br>
- 🔍 **研究重点**
- 这项研究聚焦于具身智能领域的前沿问题,针对当前研究的核心挑战展开。
- ⚙️ **主要方法**
- 通过改进现有的算法框架或系统架构,提出了新的技术解决方案,解决了实际应用中的关键问题。
- 📈 **创新价值**
- 该研究成果在实验中表现出色,在特定任务上取得了显著性能提升,具有很高的实用价值和推广前景。
- 🛠️ **应用场景**
- 这项技术有望应用于机器人、人工智能系统等实际场景,为解决复杂问题提供新的思路和方法。
- </div>
- <div class="tags">
- <span class="tag">#具身智能</span> <span class="tag">#机器人</span> <span class="tag">#交互</span>
- </div>
- <div class="footer-links">
- <a href="http://arxiv.org/abs/2603.03024v1" class="link">📄 阅读原文</a>
- </div>
- </div>
- <div class="paper-card" onclick="window.open('http://arxiv.org/abs/2603.03073v1', '_blank')">
- <div class="meta">
- <span class="badge">#具身智能</span>
- <span class="date">2026-03-03</span>
- </div>
- <h2>Context Adaptive Extended Chain Coding for Semantic Map Compression</h2>
- <div class="abstract">
- <b>📝 英文摘要:</b><br>Semantic maps are increasingly utilized in areas such as robotics, autonomous systems, and extended reality, motivating the investigation of efficient compression methods that preserve structured semantic information. This paper studies lossless compression of semantic maps throu...
- </div>
- <div class="translation">
- <b>🇨🇳 中文翻译:</b><br>【自动翻译】Semantic maps are increasingly utilized in areas such as robotics, autonomous systems, and extended reality, motivating the investigation of efficient compression methods that preserve structured semantic information. This paper studies lossless compression of semantic maps through a novel chain-cod......
- </div>
- <div class="explanation">
- <b>🔍 技术讲解:</b><br>
- 🔍 **研究重点**
- 这项研究聚焦于具身智能领域的前沿问题,针对当前研究的核心挑战展开。
- ⚙️ **主要方法**
- 通过改进现有的算法框架或系统架构,提出了新的技术解决方案,解决了实际应用中的关键问题。
- 📈 **创新价值**
- 该研究成果在实验中表现出色,在特定任务上取得了显著性能提升,具有很高的实用价值和推广前景。
- 🛠️ **应用场景**
- 这项技术有望应用于机器人、人工智能系统等实际场景,为解决复杂问题提供新的思路和方法。
- </div>
- <div class="tags">
- <span class="tag">#具身智能</span> <span class="tag">#机器人</span> <span class="tag">#交互</span>
- </div>
- <div class="footer-links">
- <a href="http://arxiv.org/abs/2603.03073v1" class="link">📄 阅读原文</a>
- </div>
- </div>
- <div class="paper-card" onclick="window.open('http://arxiv.org/abs/2603.03112v1', '_blank')">
- <div class="meta">
- <span class="badge">#表征学习</span>
- <span class="date">2026-03-03</span>
- </div>
- <h2>From Complex Dynamics to DynFormer: Rethinking Transformers for PDEs</h2>
- <div class="abstract">
- <b>📝 英文摘要:</b><br>Partial differential equations (PDEs) are fundamental for modeling complex physical systems, yet classical numerical solvers face prohibitive computational costs in high-dimensional and multi-scale regimes. While Transformer-based neural operators have emerged as powerful data-dr...
- </div>
- <div class="translation">
- <b>🇨🇳 中文翻译:</b><br>【自动翻译】Partial differential equations (PDEs) are fundamental for modeling complex physical systems, yet classical numerical solvers face prohibitive computational costs in high-dimensional and multi-scale regimes. While Transformer-based neural operators have emerged as powerful data-driven alternatives, t......
- </div>
- <div class="explanation">
- <b>🔍 技术讲解:</b><br>
- 🔍 **研究重点**
- 这项研究聚焦于表征学习领域的前沿问题,针对当前研究的核心挑战展开。
- ⚙️ **主要方法**
- 通过改进现有的算法框架或系统架构,提出了新的技术解决方案,解决了实际应用中的关键问题。
- 📈 **创新价值**
- 该研究成果在实验中表现出色,在特定任务上取得了显著性能提升,具有很高的实用价值和推广前景。
- 🛠️ **应用场景**
- 这项技术有望应用于机器人、人工智能系统等实际场景,为解决复杂问题提供新的思路和方法。
- </div>
- <div class="tags">
- <span class="tag">#表征学习</span> <span class="tag">#特征工程</span>
- </div>
- <div class="footer-links">
- <a href="http://arxiv.org/abs/2603.03112v1" class="link">📄 阅读原文</a>
- </div>
- </div>
- <div class="paper-card" onclick="window.open('http://arxiv.org/abs/2603.03097v1', '_blank')">
- <div class="meta">
- <span class="badge">#表征学习</span>
- <span class="date">2026-03-03</span>
- </div>
- <h2>Odin: Multi-Signal Graph Intelligence for Autonomous Discovery in Knowledge Graphs</h2>
- <div class="abstract">
- <b>📝 英文摘要:</b><br>We present Odin, the first production-deployed graph intelligence engine for autonomous discovery of meaningful patterns in knowledge graphs without prior specification. Unlike retrieval-based systems that answer predefined queries, Odin guides exploration through the COMPASS (Co...
- </div>
- <div class="translation">
- <b>🇨🇳 中文翻译:</b><br>【自动翻译】We present Odin, the first production-deployed graph intelligence engine for autonomous discovery of meaningful patterns in knowledge graphs without prior specification. Unlike retrieval-based systems that answer predefined queries, Odin guides exploration through the COMPASS (Composite Oriented Mul......
- </div>
- <div class="explanation">
- <b>🔍 技术讲解:</b><br>
- 🔍 **研究重点**
- 这项研究聚焦于表征学习领域的前沿问题,针对当前研究的核心挑战展开。
- ⚙️ **主要方法**
- 通过改进现有的算法框架或系统架构,提出了新的技术解决方案,解决了实际应用中的关键问题。
- 📈 **创新价值**
- 该研究成果在实验中表现出色,在特定任务上取得了显著性能提升,具有很高的实用价值和推广前景。
- 🛠️ **应用场景**
- 这项技术有望应用于机器人、人工智能系统等实际场景,为解决复杂问题提供新的思路和方法。
- </div>
- <div class="tags">
- <span class="tag">#表征学习</span> <span class="tag">#特征工程</span>
- </div>
- <div class="footer-links">
- <a href="http://arxiv.org/abs/2603.03097v1" class="link">📄 阅读原文</a>
- </div>
- </div>
- <div class="container">
- <div class="footer">
- ✨ 每天早晨10:30准时推送 · 精选最具潜力的AI研究
- </div>
- </div>
- </div>
- <div class="app-bar">
- <a href="https://t.me/你的机器人" class="btn">💬 立即订阅</a>
- <a href="{paper.get('url', '#')}" class="btn">🔍 浏览全部</a>
- </div>
- </body>
- </html>
|