Docs: Auto-update from today/archive.tar.gz
This commit is contained in:
Binary file not shown.
@@ -1,266 +0,0 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="zh" class="light sidebar-visible" dir="ltr">
|
||||
<head>
|
||||
<!-- Book generated using mdBook -->
|
||||
<meta charset="UTF-8">
|
||||
<title>Today - By 何夕2077</title>
|
||||
|
||||
|
||||
<!-- Custom HTML head -->
|
||||
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="icon" href="favicon.svg">
|
||||
<link rel="shortcut icon" href="favicon.png">
|
||||
<link rel="stylesheet" href="css/variables.css">
|
||||
<link rel="stylesheet" href="css/general.css">
|
||||
<link rel="stylesheet" href="css/chrome.css">
|
||||
<link rel="stylesheet" href="css/print.css" media="print">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="fonts/fonts.css">
|
||||
|
||||
<!-- Highlight.js Stylesheets -->
|
||||
<link rel="stylesheet" id="highlight-css" href="highlight.css">
|
||||
<link rel="stylesheet" id="tomorrow-night-css" href="tomorrow-night.css">
|
||||
<link rel="stylesheet" id="ayu-highlight-css" href="ayu-highlight.css">
|
||||
|
||||
<!-- Custom theme stylesheets -->
|
||||
|
||||
|
||||
<!-- Provide site root and default themes to javascript -->
|
||||
<script>
|
||||
const path_to_root = "";
|
||||
const default_light_theme = "light";
|
||||
const default_dark_theme = "navy";
|
||||
</script>
|
||||
<!-- Start loading toc.js asap -->
|
||||
<script src="toc.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="mdbook-help-container">
|
||||
<div id="mdbook-help-popup">
|
||||
<h2 class="mdbook-help-title">Keyboard shortcuts</h2>
|
||||
<div>
|
||||
<p>Press <kbd>←</kbd> or <kbd>→</kbd> to navigate between chapters</p>
|
||||
<p>Press <kbd>S</kbd> or <kbd>/</kbd> to search in the book</p>
|
||||
<p>Press <kbd>?</kbd> to show this help</p>
|
||||
<p>Press <kbd>Esc</kbd> to hide this help</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="body-container">
|
||||
<!-- Work around some values being stored in localStorage wrapped in quotes -->
|
||||
<script>
|
||||
try {
|
||||
let theme = localStorage.getItem('mdbook-theme');
|
||||
let sidebar = localStorage.getItem('mdbook-sidebar');
|
||||
|
||||
if (theme.startsWith('"') && theme.endsWith('"')) {
|
||||
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
|
||||
}
|
||||
|
||||
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
|
||||
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
|
||||
}
|
||||
} catch (e) { }
|
||||
</script>
|
||||
|
||||
<!-- Set the theme before any content is loaded, prevents flash -->
|
||||
<script>
|
||||
const default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? default_dark_theme : default_light_theme;
|
||||
let theme;
|
||||
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
|
||||
if (theme === null || theme === undefined) { theme = default_theme; }
|
||||
const html = document.documentElement;
|
||||
html.classList.remove('light')
|
||||
html.classList.add(theme);
|
||||
html.classList.add("js");
|
||||
</script>
|
||||
|
||||
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
|
||||
|
||||
<!-- Hide / unhide sidebar before it is displayed -->
|
||||
<script>
|
||||
let sidebar = null;
|
||||
const sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
|
||||
if (document.body.clientWidth >= 1080) {
|
||||
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
|
||||
sidebar = sidebar || 'visible';
|
||||
} else {
|
||||
sidebar = 'hidden';
|
||||
}
|
||||
sidebar_toggle.checked = sidebar === 'visible';
|
||||
html.classList.remove('sidebar-visible');
|
||||
html.classList.add("sidebar-" + sidebar);
|
||||
</script>
|
||||
|
||||
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
|
||||
<!-- populated by js -->
|
||||
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
|
||||
<noscript>
|
||||
<iframe class="sidebar-iframe-outer" src="toc.html"></iframe>
|
||||
</noscript>
|
||||
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
|
||||
<div class="sidebar-resize-indicator"></div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="page-wrapper" class="page-wrapper">
|
||||
|
||||
<div class="page">
|
||||
<div id="menu-bar-hover-placeholder"></div>
|
||||
<div id="menu-bar" class="menu-bar sticky">
|
||||
<div class="left-buttons">
|
||||
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
|
||||
<i class="fa fa-bars"></i>
|
||||
</label>
|
||||
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
|
||||
<i class="fa fa-paint-brush"></i>
|
||||
</button>
|
||||
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
|
||||
<li role="none"><button role="menuitem" class="theme" id="default_theme">Auto</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
|
||||
</ul>
|
||||
<button id="search-toggle" class="icon-button" type="button" title="Search (`/`)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="/ s" aria-controls="searchbar">
|
||||
<i class="fa fa-search"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<h1 class="menu-title">By 何夕2077</h1>
|
||||
|
||||
<div class="right-buttons">
|
||||
<a href="print.html" title="Print this book" aria-label="Print this book">
|
||||
<i id="print-button" class="fa fa-print"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="search-wrapper" class="hidden">
|
||||
<form id="searchbar-outer" class="searchbar-outer">
|
||||
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
|
||||
</form>
|
||||
<div id="searchresults-outer" class="searchresults-outer hidden">
|
||||
<div id="searchresults-header" class="searchresults-header"></div>
|
||||
<ul id="searchresults">
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
|
||||
<script>
|
||||
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
|
||||
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
|
||||
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
|
||||
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
|
||||
});
|
||||
</script>
|
||||
|
||||
<div id="content" class="content">
|
||||
<main>
|
||||
<h1 id="ai洞察日报-2025611"><a class="header" href="#ai洞察日报-2025611">AI洞察日报 2025/6/11</a></h1>
|
||||
<p><strong>AI产品与功能更新</strong></p>
|
||||
<ol>
|
||||
<li><strong>豆包大模型家族</strong>将在2025 FORCE原动力大会上,重磅发布全新的<strong>豆包·视频生成模型</strong>。这款模型可谓"创意魔法棒”,它凭借高效结构和多任务统一建模等黑科技,不仅支持<strong>无缝多镜头叙事</strong>,还能<strong>精准响应多动作</strong>,甚至能像专业摄影师一样<strong>随心运镜</strong>,轻松生成写实、动漫等多种风格的<strong>高品质视频</strong>,简直是视频创作者的福音!
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388517021358447365987976.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388517021358447365987976.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>xAI开发的<strong>Grok</strong>人工智能正大刀阔斧地接管X平台的<strong>推荐算法</strong>,同时优化了评论排序机制。这意味着,平台将优先推荐<strong>高质量内容</strong>,而非仅仅看粉丝量,这无疑给那些粉丝较少但有真材实料的"小号”和新人带来了前所未有的曝光机会,旨在打造一个更公平、更开放的内容生态,让好内容不再"蒙尘”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514989498792027745193.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514989498792027745193.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>豆包App</strong>近期也对"一句话P图”功能进行了全面升级,它基于强大的SeedEdit 3.0模型,新增了一键添加/替换文字、质感风格迁移和局部图像编辑增强等一系列酷炫修图玩法。这波升级简直是把专业修图师请进了手机,让普通用户也能无需专业技能,轻松搞定个性化照片创作,让"修图小白”也能变身"修图大师”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514703219058043604298.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514703219058043604298.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>苹果在WWDC 2025大会上带来了iOS 26系统的"杀手级”功能——<strong>视觉智能</strong>。有了它,你可以在屏幕上的任何图片或信息上进行提问、搜索,甚至自动识别事件详情,简直是手机的"智能眼”。这项升级通过AI技术实现了屏幕内容的"一眼识别”,大大提升了交互体验的便捷性与智能化程度,还能自动提取事件信息加入日历,让你的数字生活更加省心。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514197880401555868249.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514197880401555868249.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>好消息!<strong>沉浸式翻译</strong>迎来重大更新,现在已能对<strong>推特(X)视频</strong>进行<strong>实时翻译</strong>。即便视频没有原生字幕,它也能帮你"神同步”地显示<strong>中英双语字幕</strong>。这下,刷X平台视频再也不用担心语言不通了,简直是跨文化交流的"神助攻”,彻底消除了语言障碍,让世界更近。
|
||||
<a href="https://x.com/imxiaohu/status/1932299897388277804">Link</a></li>
|
||||
</ol>
|
||||
<p><strong>AI前沿研究</strong></p>
|
||||
<ol>
|
||||
<li>香港大学和华为诺亚方舟实验室强强联手,推出了颠覆性的<strong>FUDOKI</strong>模型。这款模型采用<strong>非掩码离散流匹配架构</strong>,成功突破了传统自回归模型的束缚,实现了更加灵活高效的<strong>多模态生成与理解</strong>能力。它通过独特的<strong>并行去噪机制</strong>,显著提升了复杂推理和生成任务的表现,尤其在<strong>图像生成</strong>方面表现惊艳,为未来<strong>通用人工智能</strong>的发展铺平了道路。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202405161743136484_4.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202405161743136484_4.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>香港科技大学和快手科技的研究团队联合发布了<strong>EvoSearch(进化搜索)技术</strong>,这简直是AI作画领域的一股清流!它彻底颠覆了以往"大模型、大算力”的固有思维,巧妙地将达尔文的进化论思想融入AI生成过程,让那些"小个子”模型也能生成超越甚至媲美"大块头”的<strong>高质量图像和视频</strong>。这项突破性技术有望开启AI创作的**"智能进化”时代**,让AI模型在推理阶段释放更深层次的潜力。相关项目主页、代码和论文链接已发布:<a href="https://tinnerhrhe.github.io/evosearch/">https://tinnerhrhe.github.io/evosearch/</a>、<a href="https://github.com/tinnerhrhe/EvoSearch-codes">https://github.com/tinnerhrhe/EvoSearch-codes</a>、<a href="https://arxiv.org/abs/2505.17618">https://arxiv.org/abs/2505.17618</a>。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516498517715873339996.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516498517715873339996.png" alt="图片" /></a> <br/>
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516503306155376085044.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516503306155376085044.png" alt="图片" /></a> <br/></li>
|
||||
<li>一篇名为"<strong>玩中泛化:通过游戏学习推理</strong>”的学术论文揭示了令人兴奋的发现:<strong>多模态大型语言模型(MLLMs)<strong>通过玩简单的</strong>街机游戏</strong>,竟然能<strong>显著提升其跨领域的多模态推理能力</strong>,甚至超越了在特定数据上训练的<strong>专业模型</strong>!这无疑为未来<strong>通用AI能力的培养</strong>指明了一条充满趣味的新方向,让AI在"玩乐”中变得更聪明。
|
||||
<a href="https://arxiv.org/abs/2506.08011">此链接</a></li>
|
||||
<li>新论文《梦境之地》(<strong>Dreamland</strong>)提出了一种结合物理模拟器与大型生成模型的混合框架。它的目标是创造出高度可控且逼真的动态虚拟世界,不仅显著提升了图像质量与可控性,更重要的是,有望为<strong>具身AI智能体</strong>的训练提供一个理想的"游乐场”和"实验室”,助力AI在现实世界中更好地学习和行动。
|
||||
<a href="https://arxiv.org/abs/2506.08006">Link</a></li>
|
||||
</ol>
|
||||
<p><strong>AI行业展望与社会影响</strong></p>
|
||||
<ol>
|
||||
<li>理想汽车近期进行了组织架构的"大变身”,正式成立了**"空间机器人”<strong>和</strong>"穿戴机器人”<strong>两个全新的二级部门。这不仅仅是部门调整,更预示着理想汽车正从传统的汽车制造商转型为</strong>智能出行生态构建者**。他们旨在通过机器人技术,构建一个涵盖车内"第三空间”和车外智能穿戴设备的完整智能生活服务体系,这无疑将为理想汽车在竞争激烈的市场中带来新的差异化优势,让"第三空间”战略不再只是一个概念。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202105061137083176_6.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202105061137083176_6.jpg" alt="理想汽车" /></a> <br/></li>
|
||||
<li>俄亥俄州立大学宣布从今年起,将强制所有学生接受<strong>人工智能(AI)培训</strong>,这简直是为未来职场"量身定制”的技能包!学校推出了**"AI流利度”计划**,将AI教育全面融入本科生课程,旨在培养学生将专业知识与AI技术有效结合的能力。当然,学校也强调学生不得利用生成性AI来"蒙混过关”,同时加强教师培训以维护<strong>学术诚信</strong>。此举旨在确保每位毕业生都能在其专业领域有效应用AI,并积极响应俄亥俄州AI教育联盟在K-12教育中推动AI教育的努力,让AI真正成为每个人的"超级助手”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202306251749094253_12.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202306251749094253_12.jpg" alt="学习 考试 高考 教育 (1)" /></a> <br/></li>
|
||||
<li>知名思考者李继刚一针见血地指出,当AI技术变得越发<strong>高效强大</strong>时,人类的<strong>判断力</strong>、<strong>品味</strong>和对事物<strong>目的的理解</strong>反而会变得更为<strong>硬核</strong>。因为AI虽然能生成万千方案并完美执行,却无法替代人类进行<strong>选择</strong>、定义<strong>美</strong>,更无法洞悉复杂且深邃的<strong>人性</strong>。这提醒我们,在AI时代,真正有价值的,或许正是那些AI无法企及的"人类专属技能”。
|
||||
<a href="https://m.okjike.com/originalPosts/68480c352b31fa0880f554c5">Link</a></li>
|
||||
</ol>
|
||||
<p><strong>开源TOP项目</strong></p>
|
||||
<ol>
|
||||
<li>小红书的 hi lab 团队近日献出了一份"大礼”——首个开源文本大模型<strong>dots.llm1</strong>!这款拥有1420亿参数的<strong>混合专家(MoE)语言模型</strong>,在海量真实数据训练后,其性能竟然能媲美阿里巴巴的Qwen2.5-72B,这简直是模型界的"黑马”!此次开源不仅彰显了小红书在人工智能领域的技术雄心,更旨在提供更智能化的服务,并激励开发者们一起加入AI研究的"大合唱”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/201811151633429180_32.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/201811151633429180_32.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>近期,GitHub上两个<strong>AI相关</strong>的项目人气爆棚。其中,拥有10785星的"<strong>newsnow</strong>”项目,它旨在为用户提供<strong>优雅的实时热点新闻阅读体验</strong>,让信息获取既便捷又高效,简直是"新闻控”的福音,地址在这里:<a href="https://github.com/ourongxing/newsnow">此链接</a>。另一个是"<strong>GenAI_Agents</strong>”项目,以12884星的高热度,为开发者提供了<strong>从基础到高级的生成式AI智能体技术教程与实现</strong>,旨在赋能构建更智能的<strong>交互式AI系统</strong>,详情可访问:<a href="https://github.com/NirDiamant/GenAI_Agents">此链接</a>。</li>
|
||||
</ol>
|
||||
<p><strong>社媒分享</strong></p>
|
||||
<ol>
|
||||
<li>Gorden Sun在社交媒体上分享了<strong>Mirage</strong>虚拟人模型产品,这款产品简直是"数字分身”的魔法师!它能通过音频驱动,生成生动、嘴型同步且表情丰富的<strong>虚拟人视频</strong>,栩栩如生。Gorden Sun还特别强调,该产品的详细技术报告对研究人员具有极高的参考价值,看来又将引发一场虚拟人技术的"军备竞赛”。
|
||||
<a href="https://x.com/Gorden_Sun/status/1932446920884334635">Link</a></li>
|
||||
<li>Sam Altman在X平台发文宣布,<strong>o3产品</strong>价格已大幅下调80%,这简直是"福利大放送”!他表达了对用户创新使用的期待,并预告了<strong>o3-pro版本</strong>也将提供令人满意的定价。看来,Sora之父又在鼓励大家放开手脚,用更低的成本去探索AI的无限可能了。
|
||||
<a href="https://x.com/sama/status/1932434606558462459">Link</a></li>
|
||||
<li>Ryan ᵐᶠᵉʳ 🦄d/acc抛出了一个关于<strong>下一代创业者</strong>的深刻观点:他们不应被束缚于模仿乔布斯等前代成功模式,也不应受限于<strong>有限的低质量输入</strong>,而应<strong>忠于自我</strong>,以<strong>独特</strong>的"vibe”和<strong>玩乐精神</strong>去<strong>自由探索</strong>。这就像在说,别做别人的影子,去创造属于你自己的"游戏规则”!
|
||||
<a href="https://x.com/RyanMfer/status/1932387601341984815">Link</a></li>
|
||||
<li>用户wwwgoubuli分享了AI在实际工作中的一个有趣转变。他提到,远程团队成员初时因担心被视为偷懒而<strong>不敢充分使用AI</strong>,但在他多次分享AI"正确用法”后,团队逐渐"放开手脚”,结果代码的<strong>注释、规范和质量</strong>均显著提升,同事们也展现出更高的<strong>自信</strong>。这简直是AI赋能团队效率提升的"教科书式”案例,打破了心中的"AI焦虑”。
|
||||
<a href="https://x.com/wwwgoubuli/status/1932358909865480333">Link</a></li>
|
||||
</ol>
|
||||
|
||||
</main>
|
||||
|
||||
<nav class="nav-wrapper" aria-label="Page navigation">
|
||||
<!-- Mobile navigation buttons -->
|
||||
|
||||
<a rel="next prefetch" href="daily/2025-06-11.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
|
||||
<div style="clear: both"></div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
||||
|
||||
<a rel="next prefetch" href="daily/2025-06-11.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
window.playground_copyable = true;
|
||||
</script>
|
||||
|
||||
|
||||
<script src="elasticlunr.min.js"></script>
|
||||
<script src="mark.min.js"></script>
|
||||
<script src="searcher.js"></script>
|
||||
|
||||
<script src="clipboard.min.js"></script>
|
||||
<script src="highlight.js"></script>
|
||||
<script src="book.js"></script>
|
||||
|
||||
<!-- Custom JS scripts -->
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
260
today/book/2025-06-12.html
Normal file
260
today/book/2025-06-12.html
Normal file
@@ -0,0 +1,260 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="zh" class="light sidebar-visible" dir="ltr">
|
||||
<head>
|
||||
<!-- Book generated using mdBook -->
|
||||
<meta charset="UTF-8">
|
||||
<title>Today - By 何夕2077</title>
|
||||
|
||||
|
||||
<!-- Custom HTML head -->
|
||||
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="icon" href="favicon.svg">
|
||||
<link rel="shortcut icon" href="favicon.png">
|
||||
<link rel="stylesheet" href="css/variables.css">
|
||||
<link rel="stylesheet" href="css/general.css">
|
||||
<link rel="stylesheet" href="css/chrome.css">
|
||||
<link rel="stylesheet" href="css/print.css" media="print">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="fonts/fonts.css">
|
||||
|
||||
<!-- Highlight.js Stylesheets -->
|
||||
<link rel="stylesheet" id="highlight-css" href="highlight.css">
|
||||
<link rel="stylesheet" id="tomorrow-night-css" href="tomorrow-night.css">
|
||||
<link rel="stylesheet" id="ayu-highlight-css" href="ayu-highlight.css">
|
||||
|
||||
<!-- Custom theme stylesheets -->
|
||||
|
||||
|
||||
<!-- Provide site root and default themes to javascript -->
|
||||
<script>
|
||||
const path_to_root = "";
|
||||
const default_light_theme = "light";
|
||||
const default_dark_theme = "navy";
|
||||
</script>
|
||||
<!-- Start loading toc.js asap -->
|
||||
<script src="toc.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="mdbook-help-container">
|
||||
<div id="mdbook-help-popup">
|
||||
<h2 class="mdbook-help-title">Keyboard shortcuts</h2>
|
||||
<div>
|
||||
<p>Press <kbd>←</kbd> or <kbd>→</kbd> to navigate between chapters</p>
|
||||
<p>Press <kbd>S</kbd> or <kbd>/</kbd> to search in the book</p>
|
||||
<p>Press <kbd>?</kbd> to show this help</p>
|
||||
<p>Press <kbd>Esc</kbd> to hide this help</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="body-container">
|
||||
<!-- Work around some values being stored in localStorage wrapped in quotes -->
|
||||
<script>
|
||||
try {
|
||||
let theme = localStorage.getItem('mdbook-theme');
|
||||
let sidebar = localStorage.getItem('mdbook-sidebar');
|
||||
|
||||
if (theme.startsWith('"') && theme.endsWith('"')) {
|
||||
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
|
||||
}
|
||||
|
||||
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
|
||||
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
|
||||
}
|
||||
} catch (e) { }
|
||||
</script>
|
||||
|
||||
<!-- Set the theme before any content is loaded, prevents flash -->
|
||||
<script>
|
||||
const default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? default_dark_theme : default_light_theme;
|
||||
let theme;
|
||||
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
|
||||
if (theme === null || theme === undefined) { theme = default_theme; }
|
||||
const html = document.documentElement;
|
||||
html.classList.remove('light')
|
||||
html.classList.add(theme);
|
||||
html.classList.add("js");
|
||||
</script>
|
||||
|
||||
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
|
||||
|
||||
<!-- Hide / unhide sidebar before it is displayed -->
|
||||
<script>
|
||||
let sidebar = null;
|
||||
const sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
|
||||
if (document.body.clientWidth >= 1080) {
|
||||
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
|
||||
sidebar = sidebar || 'visible';
|
||||
} else {
|
||||
sidebar = 'hidden';
|
||||
}
|
||||
sidebar_toggle.checked = sidebar === 'visible';
|
||||
html.classList.remove('sidebar-visible');
|
||||
html.classList.add("sidebar-" + sidebar);
|
||||
</script>
|
||||
|
||||
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
|
||||
<!-- populated by js -->
|
||||
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
|
||||
<noscript>
|
||||
<iframe class="sidebar-iframe-outer" src="toc.html"></iframe>
|
||||
</noscript>
|
||||
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
|
||||
<div class="sidebar-resize-indicator"></div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="page-wrapper" class="page-wrapper">
|
||||
|
||||
<div class="page">
|
||||
<div id="menu-bar-hover-placeholder"></div>
|
||||
<div id="menu-bar" class="menu-bar sticky">
|
||||
<div class="left-buttons">
|
||||
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
|
||||
<i class="fa fa-bars"></i>
|
||||
</label>
|
||||
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
|
||||
<i class="fa fa-paint-brush"></i>
|
||||
</button>
|
||||
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
|
||||
<li role="none"><button role="menuitem" class="theme" id="default_theme">Auto</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
|
||||
</ul>
|
||||
<button id="search-toggle" class="icon-button" type="button" title="Search (`/`)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="/ s" aria-controls="searchbar">
|
||||
<i class="fa fa-search"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<h1 class="menu-title">By 何夕2077</h1>
|
||||
|
||||
<div class="right-buttons">
|
||||
<a href="print.html" title="Print this book" aria-label="Print this book">
|
||||
<i id="print-button" class="fa fa-print"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="search-wrapper" class="hidden">
|
||||
<form id="searchbar-outer" class="searchbar-outer">
|
||||
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
|
||||
</form>
|
||||
<div id="searchresults-outer" class="searchresults-outer hidden">
|
||||
<div id="searchresults-header" class="searchresults-header"></div>
|
||||
<ul id="searchresults">
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
|
||||
<script>
|
||||
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
|
||||
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
|
||||
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
|
||||
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
|
||||
});
|
||||
</script>
|
||||
|
||||
<div id="content" class="content">
|
||||
<main>
|
||||
<h1 id="ai洞察日报-2025612"><a class="header" href="#ai洞察日报-2025612">AI洞察日报 2025/6/12</a></h1>
|
||||
<p><strong>AI产品与功能更新</strong></p>
|
||||
<ol>
|
||||
<li><strong>Mistral AI</strong>发布了首个专注于<strong>推理</strong>的开源语言模型<strong>Magistral</strong>,旨在解决现有大型语言模型在<strong>领域知识深度</strong>、<strong>推理透明度</strong>和<strong>多语言能力</strong>上的不足。其<strong>Flash Answers</strong>模式下推理速度比竞品快10倍,并原生支持<strong>链式思维(CoT)</strong>,可自动生成可解释的思考路径。模型提供开源版<strong>Magistral Small</strong>和企业版<strong>Magistral Medium</strong>(准确率接近GPT-4 Turbo),支持多语言推理且可本地部署。 <a href="https://mistral.ai/news/magistral">Link</a>
|
||||
<br/> <a href="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1"><img src="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Figma</strong>近日正式发布官方<strong>Model Context Protocol (MCP)<strong>服务,旨在通过更智能的数据传输方式,革命性地提升</strong>AI驱动的"设计到代码”工作流效率与准确性</strong>。该服务能够提取更详细的设计稿信息,并与主流开发工具和<strong>AI</strong>编码工具无缝集成,显著减少设计与开发间的摩擦。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>OpenAI</strong>近日推出了<strong>ChatGPT全新升级版模型o3-pro</strong>,其在处理复杂问题上更精准,尤其在<strong>科学研究、编程、教育和写作</strong>等领域展现出显著优势,并整合了网页搜索、文件分析等全套工具。尽管响应速度相对较慢,但其价格相较前代o1-pro大幅降低87%,并已向Pro和Team用户开放,标志着ChatGPT正从聊天机器人转型为高效工作助手。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>美国西北大学医学院研发的<strong>全球首个临床AI放射系统</strong>已在12家医院全面部署,它能在<strong>毫秒内识别危及生命的病症</strong>,并通过读取完整影像、生成95%报告,大幅提升医学影像诊断效率。该系统已将报告生成效率平均提升15.5%(CT影像分析甚至高达80%),有望显著缓解全球放射科医生短缺问题,并帮助医生更快做出诊断,尤其是在危急病例中。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Krea AI</strong>近期发布了其首款图像生成模型<strong>Krea1</strong>,该模型以卓越的<strong>美学控制力</strong>和<strong>画质表现</strong>,解决了传统AI图像生成中存在的"AI外观”问题,并支持风格参考及定制化训练。目前,Krea AI已开放Krea1的<strong>免费测试版</strong>,赋能创作者将创意转化为高质量视觉作品,同时还提供了高达<strong>4K高清</strong>的图像增强功能。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>AI前沿研究</strong></p>
|
||||
<ol>
|
||||
<li>北京大学、字节跳动和卡内基梅隆大学联合发布了<strong>PartCrafter</strong>项目,该技术能从单张RGB图像直接生成<strong>高精度、结构化</strong>的3D模型,彻底颠覆了传统"先分割再重建”的复杂流程,并将生成时间缩短至约40秒。PartCrafter最引人注目的是其"<strong>透视</strong>”能力,即使输入图像中部分结构被遮挡,也能推断并生成完整的3D几何结构,展现了AI在3D生成领域的巨大潜力,对<strong>游戏开发</strong>、<strong>虚拟现实</strong>和<strong>工业设计</strong>等领域具有广泛应用前景。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>伊利诺伊大学香槟分校和加州大学伯克利分校的研究人员共同开发了<strong>突破性AI框架AlphaOne</strong>,它让大型语言模型能通过"<strong>先慢思考后快思考</strong>”策略精确调控推理过程,解决了现有大模型"过度思考”与"思考不足”的痛点。实验证明,AlphaOne在准确率上平均提升了6.15%,并显著降低约21%的计算成本,为企业级AI应用提供了高效可靠的工具,其代码即将发布于<a href="https://github.com/ASTRAL-Group/AlphaOne">GitHub</a>。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>一篇名为<strong>DiscoVLA</strong>的学术论文提出了一种创新方法,通过同步处理视觉、语言和对齐方面的差异,显著提升了<strong>视频文本检索</strong>的效率与准确性,尤其是在MSRVTT数据集上表现优异,为参数高效的视频文本检索提供了新的思路,更多信息可查看<a href="https://arxiv.org/abs/2506.08887">论文链接</a>。</li>
|
||||
</ol>
|
||||
<p><strong>AI行业展望与社会影响</strong></p>
|
||||
<ol>
|
||||
<li>OpenAI首席执行官<strong>Sam Altman</strong>在其最新博客文章中预测,<strong>AI技术</strong>已跨越关键临界点,未来将迎来**"温和奇点”<strong>。他预计到</strong>2026年**,AI系统将能够自主发现新颖见解;到<strong>2027年</strong>,AI驱动的机器人将在现实世界执行任务;而到<strong>2030年代</strong>,人类将进入智能与能量极大丰富的时代,彻底重塑经济与社会。他强调需加大对AI基础设施的投资并加强治理和安全措施。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>OpenAI 首席科学家 <strong>Ilya Sutskever</strong> 近日在母校多伦多大学演讲,分享了他对<strong>人工智能 (AI)</strong> 发展的深刻见解,强调 <strong>AI</strong> 正在迅速改变学习和工作模式。他预测 <strong>AI</strong> 未来有潜力完成所有人类任务,但也带来了巨大挑战,需要人类思考如何合理利用这一变革。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>特朗普政府一项旨在推动 <strong>AI</strong> 技术在联邦政府应用的全新计划 "<strong>AI.gov</strong>” 近日在 <strong>GitHub</strong> 上意外泄露。该计划包括聊天机器人、全能 <strong>API</strong> 及实时监控工具,旨在自动化联邦工作,但专家对此可能带来的<strong>数据安全风险</strong>表示担忧。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>开源TOP项目</strong></p>
|
||||
<ol>
|
||||
<li><strong>Hyperswitch</strong>是一个用Rust编写的开源支付交换系统,致力于实现<strong>快速、可靠且经济实惠</strong>的支付体验,已获得<strong>20606</strong>个星标,详情可访问其<a href="https://github.com/juspay/hyperswitch">GitHub</a>页面。</li>
|
||||
<li>同时,有两个备受关注的开源项目:"<strong>awesome</strong>”项目(<a href="https://github.com/sindresorhus/awesome">Link</a>)拥有365526颗星,提供了关于各种<strong>有趣主题</strong>的<strong>精选列表</strong>;而获得11717颗星的<strong>vosk-api</strong>项目(<a href="https://github.com/alphacep/vosk-api">Link</a>)则是一个功能强大的<strong>离线语音识别API</strong>,支持Android、iOS、树莓派及服务器等多平台。</li>
|
||||
</ol>
|
||||
<p><strong>社媒分享</strong></p>
|
||||
<ol>
|
||||
<li>黄赟在推文中对苹果的"<strong>Liquid Glass</strong>”技术表达了极大的热情,他认为这项技术并非仅仅是视觉上的美化,而是GUI软件为支持<strong>多模态AI和AR/MR</strong>、从屏幕向<strong>空间计算</strong>演进的必然本质变化。黄赟推测苹果不急于推出Apple Intelligence Model,可能正是在为更大范围地将AI渗透到<strong>3D空间</strong>做准备,这预示着苹果股票将再次腾飞。欲了解更多,请访问<a href="https://x.com/huangyun_122/status/1932810735194943909">原推文</a>。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig"><img src="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>杨毅在推文中阐述了他钟爱<strong>AI Agent</strong>的原因,认为它们能直接高效地解决问题,与许多工作中因"人情世故”而产生的低效与"造势”形成鲜明对比,并强调AI Agent只为结果和效率付费。详情可见<a href="https://x.com/Yangyixxxx/status/1932777869639626876">此推文</a>。</li>
|
||||
<li>Meng Shao则分享了AI工程师12项被低估但长期回报高的关键技能,其中包括<strong>编写高质量提示词</strong>、<strong>构建与调试数据管道</strong>以及<strong>理解延迟与性能权衡</strong>等实践能力。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=orig"><img src="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>Shing发帖宣布,<strong>Arc</strong>浏览器的新产品<strong>Dia</strong>将于2025年6月11日为Arc会员提供早鸟体验,邀请好奇用户率先尝鲜,访问<a href="https://x.com/shing19_eth/status/1932686185434063352">此链接</a>了解更多。</li>
|
||||
<li><strong>Sam Altman</strong>在社交媒体上表示,其团队的<strong>开源权重模型</strong>发布将推迟至今年夏末,而非六月,原因是研究团队取得了一项"<strong>意料之外的突破</strong>”,他相信这次成果<strong>值得等待</strong>。这一延迟旨在完善这项非凡的新进展。<a href="https://x.com/dotey/status/1932584576276210004">Link</a></li>
|
||||
</ol>
|
||||
|
||||
</main>
|
||||
|
||||
<nav class="nav-wrapper" aria-label="Page navigation">
|
||||
<!-- Mobile navigation buttons -->
|
||||
|
||||
<a rel="next prefetch" href="daily/2025-06-12.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
|
||||
<div style="clear: both"></div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
||||
|
||||
<a rel="next prefetch" href="daily/2025-06-12.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
window.playground_copyable = true;
|
||||
</script>
|
||||
|
||||
|
||||
<script src="elasticlunr.min.js"></script>
|
||||
<script src="mark.min.js"></script>
|
||||
<script src="searcher.js"></script>
|
||||
|
||||
<script src="clipboard.min.js"></script>
|
||||
<script src="highlight.js"></script>
|
||||
<script src="book.js"></script>
|
||||
|
||||
<!-- Custom JS scripts -->
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -223,7 +223,7 @@
|
||||
|
||||
<nav class="nav-wrapper" aria-label="Page navigation">
|
||||
<!-- Mobile navigation buttons -->
|
||||
<a rel="prev" href="../2025-06-11.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||||
<a rel="prev" href="../daily/2025-06-12.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||||
<i class="fa fa-angle-left"></i>
|
||||
</a>
|
||||
|
||||
@@ -237,7 +237,7 @@
|
||||
</div>
|
||||
|
||||
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
||||
<a rel="prev" href="../2025-06-11.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||||
<a rel="prev" href="../daily/2025-06-12.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||||
<i class="fa fa-angle-left"></i>
|
||||
</a>
|
||||
|
||||
|
||||
266
today/book/daily/2025-06-12.html
Normal file
266
today/book/daily/2025-06-12.html
Normal file
@@ -0,0 +1,266 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="zh" class="light sidebar-visible" dir="ltr">
|
||||
<head>
|
||||
<!-- Book generated using mdBook -->
|
||||
<meta charset="UTF-8">
|
||||
<title>06-12-日刊 - By 何夕2077</title>
|
||||
|
||||
|
||||
<!-- Custom HTML head -->
|
||||
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="icon" href="../favicon.svg">
|
||||
<link rel="shortcut icon" href="../favicon.png">
|
||||
<link rel="stylesheet" href="../css/variables.css">
|
||||
<link rel="stylesheet" href="../css/general.css">
|
||||
<link rel="stylesheet" href="../css/chrome.css">
|
||||
<link rel="stylesheet" href="../css/print.css" media="print">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link rel="stylesheet" href="../FontAwesome/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="../fonts/fonts.css">
|
||||
|
||||
<!-- Highlight.js Stylesheets -->
|
||||
<link rel="stylesheet" id="highlight-css" href="../highlight.css">
|
||||
<link rel="stylesheet" id="tomorrow-night-css" href="../tomorrow-night.css">
|
||||
<link rel="stylesheet" id="ayu-highlight-css" href="../ayu-highlight.css">
|
||||
|
||||
<!-- Custom theme stylesheets -->
|
||||
|
||||
|
||||
<!-- Provide site root and default themes to javascript -->
|
||||
<script>
|
||||
const path_to_root = "../";
|
||||
const default_light_theme = "light";
|
||||
const default_dark_theme = "navy";
|
||||
</script>
|
||||
<!-- Start loading toc.js asap -->
|
||||
<script src="../toc.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="mdbook-help-container">
|
||||
<div id="mdbook-help-popup">
|
||||
<h2 class="mdbook-help-title">Keyboard shortcuts</h2>
|
||||
<div>
|
||||
<p>Press <kbd>←</kbd> or <kbd>→</kbd> to navigate between chapters</p>
|
||||
<p>Press <kbd>S</kbd> or <kbd>/</kbd> to search in the book</p>
|
||||
<p>Press <kbd>?</kbd> to show this help</p>
|
||||
<p>Press <kbd>Esc</kbd> to hide this help</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="body-container">
|
||||
<!-- Work around some values being stored in localStorage wrapped in quotes -->
|
||||
<script>
|
||||
try {
|
||||
let theme = localStorage.getItem('mdbook-theme');
|
||||
let sidebar = localStorage.getItem('mdbook-sidebar');
|
||||
|
||||
if (theme.startsWith('"') && theme.endsWith('"')) {
|
||||
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
|
||||
}
|
||||
|
||||
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
|
||||
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
|
||||
}
|
||||
} catch (e) { }
|
||||
</script>
|
||||
|
||||
<!-- Set the theme before any content is loaded, prevents flash -->
|
||||
<script>
|
||||
const default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? default_dark_theme : default_light_theme;
|
||||
let theme;
|
||||
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
|
||||
if (theme === null || theme === undefined) { theme = default_theme; }
|
||||
const html = document.documentElement;
|
||||
html.classList.remove('light')
|
||||
html.classList.add(theme);
|
||||
html.classList.add("js");
|
||||
</script>
|
||||
|
||||
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
|
||||
|
||||
<!-- Hide / unhide sidebar before it is displayed -->
|
||||
<script>
|
||||
let sidebar = null;
|
||||
const sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
|
||||
if (document.body.clientWidth >= 1080) {
|
||||
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
|
||||
sidebar = sidebar || 'visible';
|
||||
} else {
|
||||
sidebar = 'hidden';
|
||||
}
|
||||
sidebar_toggle.checked = sidebar === 'visible';
|
||||
html.classList.remove('sidebar-visible');
|
||||
html.classList.add("sidebar-" + sidebar);
|
||||
</script>
|
||||
|
||||
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
|
||||
<!-- populated by js -->
|
||||
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
|
||||
<noscript>
|
||||
<iframe class="sidebar-iframe-outer" src="../toc.html"></iframe>
|
||||
</noscript>
|
||||
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
|
||||
<div class="sidebar-resize-indicator"></div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="page-wrapper" class="page-wrapper">
|
||||
|
||||
<div class="page">
|
||||
<div id="menu-bar-hover-placeholder"></div>
|
||||
<div id="menu-bar" class="menu-bar sticky">
|
||||
<div class="left-buttons">
|
||||
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
|
||||
<i class="fa fa-bars"></i>
|
||||
</label>
|
||||
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
|
||||
<i class="fa fa-paint-brush"></i>
|
||||
</button>
|
||||
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
|
||||
<li role="none"><button role="menuitem" class="theme" id="default_theme">Auto</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
|
||||
</ul>
|
||||
<button id="search-toggle" class="icon-button" type="button" title="Search (`/`)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="/ s" aria-controls="searchbar">
|
||||
<i class="fa fa-search"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<h1 class="menu-title">By 何夕2077</h1>
|
||||
|
||||
<div class="right-buttons">
|
||||
<a href="../print.html" title="Print this book" aria-label="Print this book">
|
||||
<i id="print-button" class="fa fa-print"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="search-wrapper" class="hidden">
|
||||
<form id="searchbar-outer" class="searchbar-outer">
|
||||
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
|
||||
</form>
|
||||
<div id="searchresults-outer" class="searchresults-outer hidden">
|
||||
<div id="searchresults-header" class="searchresults-header"></div>
|
||||
<ul id="searchresults">
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
|
||||
<script>
|
||||
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
|
||||
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
|
||||
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
|
||||
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
|
||||
});
|
||||
</script>
|
||||
|
||||
<div id="content" class="content">
|
||||
<main>
|
||||
<h1 id="ai洞察日报-2025612"><a class="header" href="#ai洞察日报-2025612">AI洞察日报 2025/6/12</a></h1>
|
||||
<p><strong>AI产品与功能更新</strong></p>
|
||||
<ol>
|
||||
<li><strong>Mistral AI</strong>发布了首个专注于<strong>推理</strong>的开源语言模型<strong>Magistral</strong>,旨在解决现有大型语言模型在<strong>领域知识深度</strong>、<strong>推理透明度</strong>和<strong>多语言能力</strong>上的不足。其<strong>Flash Answers</strong>模式下推理速度比竞品快10倍,并原生支持<strong>链式思维(CoT)</strong>,可自动生成可解释的思考路径。模型提供开源版<strong>Magistral Small</strong>和企业版<strong>Magistral Medium</strong>(准确率接近GPT-4 Turbo),支持多语言推理且可本地部署。 <a href="https://mistral.ai/news/magistral">Link</a>
|
||||
<br/> <a href="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1"><img src="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Figma</strong>近日正式发布官方<strong>Model Context Protocol (MCP)<strong>服务,旨在通过更智能的数据传输方式,革命性地提升</strong>AI驱动的"设计到代码”工作流效率与准确性</strong>。该服务能够提取更详细的设计稿信息,并与主流开发工具和<strong>AI</strong>编码工具无缝集成,显著减少设计与开发间的摩擦。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>OpenAI</strong>近日推出了<strong>ChatGPT全新升级版模型o3-pro</strong>,其在处理复杂问题上更精准,尤其在<strong>科学研究、编程、教育和写作</strong>等领域展现出显著优势,并整合了网页搜索、文件分析等全套工具。尽管响应速度相对较慢,但其价格相较前代o1-pro大幅降低87%,并已向Pro和Team用户开放,标志着ChatGPT正从聊天机器人转型为高效工作助手。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>美国西北大学医学院研发的<strong>全球首个临床AI放射系统</strong>已在12家医院全面部署,它能在<strong>毫秒内识别危及生命的病症</strong>,并通过读取完整影像、生成95%报告,大幅提升医学影像诊断效率。该系统已将报告生成效率平均提升15.5%(CT影像分析甚至高达80%),有望显著缓解全球放射科医生短缺问题,并帮助医生更快做出诊断,尤其是在危急病例中。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Krea AI</strong>近期发布了其首款图像生成模型<strong>Krea1</strong>,该模型以卓越的<strong>美学控制力</strong>和<strong>画质表现</strong>,解决了传统AI图像生成中存在的"AI外观”问题,并支持风格参考及定制化训练。目前,Krea AI已开放Krea1的<strong>免费测试版</strong>,赋能创作者将创意转化为高质量视觉作品,同时还提供了高达<strong>4K高清</strong>的图像增强功能。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>AI前沿研究</strong></p>
|
||||
<ol>
|
||||
<li>北京大学、字节跳动和卡内基梅隆大学联合发布了<strong>PartCrafter</strong>项目,该技术能从单张RGB图像直接生成<strong>高精度、结构化</strong>的3D模型,彻底颠覆了传统"先分割再重建”的复杂流程,并将生成时间缩短至约40秒。PartCrafter最引人注目的是其"<strong>透视</strong>”能力,即使输入图像中部分结构被遮挡,也能推断并生成完整的3D几何结构,展现了AI在3D生成领域的巨大潜力,对<strong>游戏开发</strong>、<strong>虚拟现实</strong>和<strong>工业设计</strong>等领域具有广泛应用前景。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>伊利诺伊大学香槟分校和加州大学伯克利分校的研究人员共同开发了<strong>突破性AI框架AlphaOne</strong>,它让大型语言模型能通过"<strong>先慢思考后快思考</strong>”策略精确调控推理过程,解决了现有大模型"过度思考”与"思考不足”的痛点。实验证明,AlphaOne在准确率上平均提升了6.15%,并显著降低约21%的计算成本,为企业级AI应用提供了高效可靠的工具,其代码即将发布于<a href="https://github.com/ASTRAL-Group/AlphaOne">GitHub</a>。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>一篇名为<strong>DiscoVLA</strong>的学术论文提出了一种创新方法,通过同步处理视觉、语言和对齐方面的差异,显著提升了<strong>视频文本检索</strong>的效率与准确性,尤其是在MSRVTT数据集上表现优异,为参数高效的视频文本检索提供了新的思路,更多信息可查看<a href="https://arxiv.org/abs/2506.08887">论文链接</a>。</li>
|
||||
</ol>
|
||||
<p><strong>AI行业展望与社会影响</strong></p>
|
||||
<ol>
|
||||
<li>OpenAI首席执行官<strong>Sam Altman</strong>在其最新博客文章中预测,<strong>AI技术</strong>已跨越关键临界点,未来将迎来**"温和奇点”<strong>。他预计到</strong>2026年**,AI系统将能够自主发现新颖见解;到<strong>2027年</strong>,AI驱动的机器人将在现实世界执行任务;而到<strong>2030年代</strong>,人类将进入智能与能量极大丰富的时代,彻底重塑经济与社会。他强调需加大对AI基础设施的投资并加强治理和安全措施。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>OpenAI 首席科学家 <strong>Ilya Sutskever</strong> 近日在母校多伦多大学演讲,分享了他对<strong>人工智能 (AI)</strong> 发展的深刻见解,强调 <strong>AI</strong> 正在迅速改变学习和工作模式。他预测 <strong>AI</strong> 未来有潜力完成所有人类任务,但也带来了巨大挑战,需要人类思考如何合理利用这一变革。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>特朗普政府一项旨在推动 <strong>AI</strong> 技术在联邦政府应用的全新计划 "<strong>AI.gov</strong>” 近日在 <strong>GitHub</strong> 上意外泄露。该计划包括聊天机器人、全能 <strong>API</strong> 及实时监控工具,旨在自动化联邦工作,但专家对此可能带来的<strong>数据安全风险</strong>表示担忧。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>开源TOP项目</strong></p>
|
||||
<ol>
|
||||
<li><strong>Hyperswitch</strong>是一个用Rust编写的开源支付交换系统,致力于实现<strong>快速、可靠且经济实惠</strong>的支付体验,已获得<strong>20606</strong>个星标,详情可访问其<a href="https://github.com/juspay/hyperswitch">GitHub</a>页面。</li>
|
||||
<li>同时,有两个备受关注的开源项目:"<strong>awesome</strong>”项目(<a href="https://github.com/sindresorhus/awesome">Link</a>)拥有365526颗星,提供了关于各种<strong>有趣主题</strong>的<strong>精选列表</strong>;而获得11717颗星的<strong>vosk-api</strong>项目(<a href="https://github.com/alphacep/vosk-api">Link</a>)则是一个功能强大的<strong>离线语音识别API</strong>,支持Android、iOS、树莓派及服务器等多平台。</li>
|
||||
</ol>
|
||||
<p><strong>社媒分享</strong></p>
|
||||
<ol>
|
||||
<li>黄赟在推文中对苹果的"<strong>Liquid Glass</strong>”技术表达了极大的热情,他认为这项技术并非仅仅是视觉上的美化,而是GUI软件为支持<strong>多模态AI和AR/MR</strong>、从屏幕向<strong>空间计算</strong>演进的必然本质变化。黄赟推测苹果不急于推出Apple Intelligence Model,可能正是在为更大范围地将AI渗透到<strong>3D空间</strong>做准备,这预示着苹果股票将再次腾飞。欲了解更多,请访问<a href="https://x.com/huangyun_122/status/1932810735194943909">原推文</a>。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig"><img src="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>杨毅在推文中阐述了他钟爱<strong>AI Agent</strong>的原因,认为它们能直接高效地解决问题,与许多工作中因"人情世故”而产生的低效与"造势”形成鲜明对比,并强调AI Agent只为结果和效率付费。详情可见<a href="https://x.com/Yangyixxxx/status/1932777869639626876">此推文</a>。</li>
|
||||
<li>Meng Shao则分享了AI工程师12项被低估但长期回报高的关键技能,其中包括<strong>编写高质量提示词</strong>、<strong>构建与调试数据管道</strong>以及<strong>理解延迟与性能权衡</strong>等实践能力。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=orig"><img src="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>Shing发帖宣布,<strong>Arc</strong>浏览器的新产品<strong>Dia</strong>将于2025年6月11日为Arc会员提供早鸟体验,邀请好奇用户率先尝鲜,访问<a href="https://x.com/shing19_eth/status/1932686185434063352">此链接</a>了解更多。</li>
|
||||
<li><strong>Sam Altman</strong>在社交媒体上表示,其团队的<strong>开源权重模型</strong>发布将推迟至今年夏末,而非六月,原因是研究团队取得了一项"<strong>意料之外的突破</strong>”,他相信这次成果<strong>值得等待</strong>。这一延迟旨在完善这项非凡的新进展。<a href="https://x.com/dotey/status/1932584576276210004">Link</a></li>
|
||||
</ol>
|
||||
|
||||
</main>
|
||||
|
||||
<nav class="nav-wrapper" aria-label="Page navigation">
|
||||
<!-- Mobile navigation buttons -->
|
||||
<a rel="prev" href="../2025-06-12.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||||
<i class="fa fa-angle-left"></i>
|
||||
</a>
|
||||
|
||||
<a rel="next prefetch" href="../daily/2025-06-11.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
|
||||
<div style="clear: both"></div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
||||
<a rel="prev" href="../2025-06-12.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||||
<i class="fa fa-angle-left"></i>
|
||||
</a>
|
||||
|
||||
<a rel="next prefetch" href="../daily/2025-06-11.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
window.playground_copyable = true;
|
||||
</script>
|
||||
|
||||
|
||||
<script src="../elasticlunr.min.js"></script>
|
||||
<script src="../mark.min.js"></script>
|
||||
<script src="../searcher.js"></script>
|
||||
|
||||
<script src="../clipboard.min.js"></script>
|
||||
<script src="../highlight.js"></script>
|
||||
<script src="../book.js"></script>
|
||||
|
||||
<!-- Custom JS scripts -->
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -166,57 +166,51 @@
|
||||
|
||||
<div id="content" class="content">
|
||||
<main>
|
||||
<h1 id="ai洞察日报-2025611"><a class="header" href="#ai洞察日报-2025611">AI洞察日报 2025/6/11</a></h1>
|
||||
<h1 id="ai洞察日报-2025612"><a class="header" href="#ai洞察日报-2025612">AI洞察日报 2025/6/12</a></h1>
|
||||
<p><strong>AI产品与功能更新</strong></p>
|
||||
<ol>
|
||||
<li><strong>豆包大模型家族</strong>将在2025 FORCE原动力大会上,重磅发布全新的<strong>豆包·视频生成模型</strong>。这款模型可谓"创意魔法棒”,它凭借高效结构和多任务统一建模等黑科技,不仅支持<strong>无缝多镜头叙事</strong>,还能<strong>精准响应多动作</strong>,甚至能像专业摄影师一样<strong>随心运镜</strong>,轻松生成写实、动漫等多种风格的<strong>高品质视频</strong>,简直是视频创作者的福音!
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388517021358447365987976.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388517021358447365987976.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>xAI开发的<strong>Grok</strong>人工智能正大刀阔斧地接管X平台的<strong>推荐算法</strong>,同时优化了评论排序机制。这意味着,平台将优先推荐<strong>高质量内容</strong>,而非仅仅看粉丝量,这无疑给那些粉丝较少但有真材实料的"小号”和新人带来了前所未有的曝光机会,旨在打造一个更公平、更开放的内容生态,让好内容不再"蒙尘”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514989498792027745193.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514989498792027745193.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>豆包App</strong>近期也对"一句话P图”功能进行了全面升级,它基于强大的SeedEdit 3.0模型,新增了一键添加/替换文字、质感风格迁移和局部图像编辑增强等一系列酷炫修图玩法。这波升级简直是把专业修图师请进了手机,让普通用户也能无需专业技能,轻松搞定个性化照片创作,让"修图小白”也能变身"修图大师”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514703219058043604298.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514703219058043604298.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>苹果在WWDC 2025大会上带来了iOS 26系统的"杀手级”功能——<strong>视觉智能</strong>。有了它,你可以在屏幕上的任何图片或信息上进行提问、搜索,甚至自动识别事件详情,简直是手机的"智能眼”。这项升级通过AI技术实现了屏幕内容的"一眼识别”,大大提升了交互体验的便捷性与智能化程度,还能自动提取事件信息加入日历,让你的数字生活更加省心。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514197880401555868249.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514197880401555868249.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>好消息!<strong>沉浸式翻译</strong>迎来重大更新,现在已能对<strong>推特(X)视频</strong>进行<strong>实时翻译</strong>。即便视频没有原生字幕,它也能帮你"神同步”地显示<strong>中英双语字幕</strong>。这下,刷X平台视频再也不用担心语言不通了,简直是跨文化交流的"神助攻”,彻底消除了语言障碍,让世界更近。
|
||||
<a href="https://x.com/imxiaohu/status/1932299897388277804">Link</a></li>
|
||||
<li><strong>Mistral AI</strong>发布了首个专注于<strong>推理</strong>的开源语言模型<strong>Magistral</strong>,旨在解决现有大型语言模型在<strong>领域知识深度</strong>、<strong>推理透明度</strong>和<strong>多语言能力</strong>上的不足。其<strong>Flash Answers</strong>模式下推理速度比竞品快10倍,并原生支持<strong>链式思维(CoT)</strong>,可自动生成可解释的思考路径。模型提供开源版<strong>Magistral Small</strong>和企业版<strong>Magistral Medium</strong>(准确率接近GPT-4 Turbo),支持多语言推理且可本地部署。 <a href="https://mistral.ai/news/magistral">Link</a>
|
||||
<br/> <a href="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1"><img src="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Figma</strong>近日正式发布官方<strong>Model Context Protocol (MCP)<strong>服务,旨在通过更智能的数据传输方式,革命性地提升</strong>AI驱动的"设计到代码”工作流效率与准确性</strong>。该服务能够提取更详细的设计稿信息,并与主流开发工具和<strong>AI</strong>编码工具无缝集成,显著减少设计与开发间的摩擦。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>OpenAI</strong>近日推出了<strong>ChatGPT全新升级版模型o3-pro</strong>,其在处理复杂问题上更精准,尤其在<strong>科学研究、编程、教育和写作</strong>等领域展现出显著优势,并整合了网页搜索、文件分析等全套工具。尽管响应速度相对较慢,但其价格相较前代o1-pro大幅降低87%,并已向Pro和Team用户开放,标志着ChatGPT正从聊天机器人转型为高效工作助手。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>美国西北大学医学院研发的<strong>全球首个临床AI放射系统</strong>已在12家医院全面部署,它能在<strong>毫秒内识别危及生命的病症</strong>,并通过读取完整影像、生成95%报告,大幅提升医学影像诊断效率。该系统已将报告生成效率平均提升15.5%(CT影像分析甚至高达80%),有望显著缓解全球放射科医生短缺问题,并帮助医生更快做出诊断,尤其是在危急病例中。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Krea AI</strong>近期发布了其首款图像生成模型<strong>Krea1</strong>,该模型以卓越的<strong>美学控制力</strong>和<strong>画质表现</strong>,解决了传统AI图像生成中存在的"AI外观”问题,并支持风格参考及定制化训练。目前,Krea AI已开放Krea1的<strong>免费测试版</strong>,赋能创作者将创意转化为高质量视觉作品,同时还提供了高达<strong>4K高清</strong>的图像增强功能。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>AI前沿研究</strong></p>
|
||||
<ol>
|
||||
<li>香港大学和华为诺亚方舟实验室强强联手,推出了颠覆性的<strong>FUDOKI</strong>模型。这款模型采用<strong>非掩码离散流匹配架构</strong>,成功突破了传统自回归模型的束缚,实现了更加灵活高效的<strong>多模态生成与理解</strong>能力。它通过独特的<strong>并行去噪机制</strong>,显著提升了复杂推理和生成任务的表现,尤其在<strong>图像生成</strong>方面表现惊艳,为未来<strong>通用人工智能</strong>的发展铺平了道路。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202405161743136484_4.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202405161743136484_4.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>香港科技大学和快手科技的研究团队联合发布了<strong>EvoSearch(进化搜索)技术</strong>,这简直是AI作画领域的一股清流!它彻底颠覆了以往"大模型、大算力”的固有思维,巧妙地将达尔文的进化论思想融入AI生成过程,让那些"小个子”模型也能生成超越甚至媲美"大块头”的<strong>高质量图像和视频</strong>。这项突破性技术有望开启AI创作的**"智能进化”时代**,让AI模型在推理阶段释放更深层次的潜力。相关项目主页、代码和论文链接已发布:<a href="https://tinnerhrhe.github.io/evosearch/">https://tinnerhrhe.github.io/evosearch/</a>、<a href="https://github.com/tinnerhrhe/EvoSearch-codes">https://github.com/tinnerhrhe/EvoSearch-codes</a>、<a href="https://arxiv.org/abs/2505.17618">https://arxiv.org/abs/2505.17618</a>。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516498517715873339996.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516498517715873339996.png" alt="图片" /></a> <br/>
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516503306155376085044.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516503306155376085044.png" alt="图片" /></a> <br/></li>
|
||||
<li>一篇名为"<strong>玩中泛化:通过游戏学习推理</strong>”的学术论文揭示了令人兴奋的发现:<strong>多模态大型语言模型(MLLMs)<strong>通过玩简单的</strong>街机游戏</strong>,竟然能<strong>显著提升其跨领域的多模态推理能力</strong>,甚至超越了在特定数据上训练的<strong>专业模型</strong>!这无疑为未来<strong>通用AI能力的培养</strong>指明了一条充满趣味的新方向,让AI在"玩乐”中变得更聪明。
|
||||
<a href="https://arxiv.org/abs/2506.08011">此链接</a></li>
|
||||
<li>新论文《梦境之地》(<strong>Dreamland</strong>)提出了一种结合物理模拟器与大型生成模型的混合框架。它的目标是创造出高度可控且逼真的动态虚拟世界,不仅显著提升了图像质量与可控性,更重要的是,有望为<strong>具身AI智能体</strong>的训练提供一个理想的"游乐场”和"实验室”,助力AI在现实世界中更好地学习和行动。
|
||||
<a href="https://arxiv.org/abs/2506.08006">Link</a></li>
|
||||
<li>北京大学、字节跳动和卡内基梅隆大学联合发布了<strong>PartCrafter</strong>项目,该技术能从单张RGB图像直接生成<strong>高精度、结构化</strong>的3D模型,彻底颠覆了传统"先分割再重建”的复杂流程,并将生成时间缩短至约40秒。PartCrafter最引人注目的是其"<strong>透视</strong>”能力,即使输入图像中部分结构被遮挡,也能推断并生成完整的3D几何结构,展现了AI在3D生成领域的巨大潜力,对<strong>游戏开发</strong>、<strong>虚拟现实</strong>和<strong>工业设计</strong>等领域具有广泛应用前景。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>伊利诺伊大学香槟分校和加州大学伯克利分校的研究人员共同开发了<strong>突破性AI框架AlphaOne</strong>,它让大型语言模型能通过"<strong>先慢思考后快思考</strong>”策略精确调控推理过程,解决了现有大模型"过度思考”与"思考不足”的痛点。实验证明,AlphaOne在准确率上平均提升了6.15%,并显著降低约21%的计算成本,为企业级AI应用提供了高效可靠的工具,其代码即将发布于<a href="https://github.com/ASTRAL-Group/AlphaOne">GitHub</a>。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>一篇名为<strong>DiscoVLA</strong>的学术论文提出了一种创新方法,通过同步处理视觉、语言和对齐方面的差异,显著提升了<strong>视频文本检索</strong>的效率与准确性,尤其是在MSRVTT数据集上表现优异,为参数高效的视频文本检索提供了新的思路,更多信息可查看<a href="https://arxiv.org/abs/2506.08887">论文链接</a>。</li>
|
||||
</ol>
|
||||
<p><strong>AI行业展望与社会影响</strong></p>
|
||||
<ol>
|
||||
<li>理想汽车近期进行了组织架构的"大变身”,正式成立了**"空间机器人”<strong>和</strong>"穿戴机器人”<strong>两个全新的二级部门。这不仅仅是部门调整,更预示着理想汽车正从传统的汽车制造商转型为</strong>智能出行生态构建者**。他们旨在通过机器人技术,构建一个涵盖车内"第三空间”和车外智能穿戴设备的完整智能生活服务体系,这无疑将为理想汽车在竞争激烈的市场中带来新的差异化优势,让"第三空间”战略不再只是一个概念。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202105061137083176_6.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202105061137083176_6.jpg" alt="理想汽车" /></a> <br/></li>
|
||||
<li>俄亥俄州立大学宣布从今年起,将强制所有学生接受<strong>人工智能(AI)培训</strong>,这简直是为未来职场"量身定制”的技能包!学校推出了**"AI流利度”计划**,将AI教育全面融入本科生课程,旨在培养学生将专业知识与AI技术有效结合的能力。当然,学校也强调学生不得利用生成性AI来"蒙混过关”,同时加强教师培训以维护<strong>学术诚信</strong>。此举旨在确保每位毕业生都能在其专业领域有效应用AI,并积极响应俄亥俄州AI教育联盟在K-12教育中推动AI教育的努力,让AI真正成为每个人的"超级助手”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202306251749094253_12.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202306251749094253_12.jpg" alt="学习 考试 高考 教育 (1)" /></a> <br/></li>
|
||||
<li>知名思考者李继刚一针见血地指出,当AI技术变得越发<strong>高效强大</strong>时,人类的<strong>判断力</strong>、<strong>品味</strong>和对事物<strong>目的的理解</strong>反而会变得更为<strong>硬核</strong>。因为AI虽然能生成万千方案并完美执行,却无法替代人类进行<strong>选择</strong>、定义<strong>美</strong>,更无法洞悉复杂且深邃的<strong>人性</strong>。这提醒我们,在AI时代,真正有价值的,或许正是那些AI无法企及的"人类专属技能”。
|
||||
<a href="https://m.okjike.com/originalPosts/68480c352b31fa0880f554c5">Link</a></li>
|
||||
<li>OpenAI首席执行官<strong>Sam Altman</strong>在其最新博客文章中预测,<strong>AI技术</strong>已跨越关键临界点,未来将迎来**"温和奇点”<strong>。他预计到</strong>2026年**,AI系统将能够自主发现新颖见解;到<strong>2027年</strong>,AI驱动的机器人将在现实世界执行任务;而到<strong>2030年代</strong>,人类将进入智能与能量极大丰富的时代,彻底重塑经济与社会。他强调需加大对AI基础设施的投资并加强治理和安全措施。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>OpenAI 首席科学家 <strong>Ilya Sutskever</strong> 近日在母校多伦多大学演讲,分享了他对<strong>人工智能 (AI)</strong> 发展的深刻见解,强调 <strong>AI</strong> 正在迅速改变学习和工作模式。他预测 <strong>AI</strong> 未来有潜力完成所有人类任务,但也带来了巨大挑战,需要人类思考如何合理利用这一变革。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>特朗普政府一项旨在推动 <strong>AI</strong> 技术在联邦政府应用的全新计划 "<strong>AI.gov</strong>” 近日在 <strong>GitHub</strong> 上意外泄露。该计划包括聊天机器人、全能 <strong>API</strong> 及实时监控工具,旨在自动化联邦工作,但专家对此可能带来的<strong>数据安全风险</strong>表示担忧。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>开源TOP项目</strong></p>
|
||||
<ol>
|
||||
<li>小红书的 hi lab 团队近日献出了一份"大礼”——首个开源文本大模型<strong>dots.llm1</strong>!这款拥有1420亿参数的<strong>混合专家(MoE)语言模型</strong>,在海量真实数据训练后,其性能竟然能媲美阿里巴巴的Qwen2.5-72B,这简直是模型界的"黑马”!此次开源不仅彰显了小红书在人工智能领域的技术雄心,更旨在提供更智能化的服务,并激励开发者们一起加入AI研究的"大合唱”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/201811151633429180_32.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/201811151633429180_32.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>近期,GitHub上两个<strong>AI相关</strong>的项目人气爆棚。其中,拥有10785星的"<strong>newsnow</strong>”项目,它旨在为用户提供<strong>优雅的实时热点新闻阅读体验</strong>,让信息获取既便捷又高效,简直是"新闻控”的福音,地址在这里:<a href="https://github.com/ourongxing/newsnow">此链接</a>。另一个是"<strong>GenAI_Agents</strong>”项目,以12884星的高热度,为开发者提供了<strong>从基础到高级的生成式AI智能体技术教程与实现</strong>,旨在赋能构建更智能的<strong>交互式AI系统</strong>,详情可访问:<a href="https://github.com/NirDiamant/GenAI_Agents">此链接</a>。</li>
|
||||
<li><strong>Hyperswitch</strong>是一个用Rust编写的开源支付交换系统,致力于实现<strong>快速、可靠且经济实惠</strong>的支付体验,已获得<strong>20606</strong>个星标,详情可访问其<a href="https://github.com/juspay/hyperswitch">GitHub</a>页面。</li>
|
||||
<li>同时,有两个备受关注的开源项目:"<strong>awesome</strong>”项目(<a href="https://github.com/sindresorhus/awesome">Link</a>)拥有365526颗星,提供了关于各种<strong>有趣主题</strong>的<strong>精选列表</strong>;而获得11717颗星的<strong>vosk-api</strong>项目(<a href="https://github.com/alphacep/vosk-api">Link</a>)则是一个功能强大的<strong>离线语音识别API</strong>,支持Android、iOS、树莓派及服务器等多平台。</li>
|
||||
</ol>
|
||||
<p><strong>社媒分享</strong></p>
|
||||
<ol>
|
||||
<li>Gorden Sun在社交媒体上分享了<strong>Mirage</strong>虚拟人模型产品,这款产品简直是"数字分身”的魔法师!它能通过音频驱动,生成生动、嘴型同步且表情丰富的<strong>虚拟人视频</strong>,栩栩如生。Gorden Sun还特别强调,该产品的详细技术报告对研究人员具有极高的参考价值,看来又将引发一场虚拟人技术的"军备竞赛”。
|
||||
<a href="https://x.com/Gorden_Sun/status/1932446920884334635">Link</a></li>
|
||||
<li>Sam Altman在X平台发文宣布,<strong>o3产品</strong>价格已大幅下调80%,这简直是"福利大放送”!他表达了对用户创新使用的期待,并预告了<strong>o3-pro版本</strong>也将提供令人满意的定价。看来,Sora之父又在鼓励大家放开手脚,用更低的成本去探索AI的无限可能了。
|
||||
<a href="https://x.com/sama/status/1932434606558462459">Link</a></li>
|
||||
<li>Ryan ᵐᶠᵉʳ 🦄d/acc抛出了一个关于<strong>下一代创业者</strong>的深刻观点:他们不应被束缚于模仿乔布斯等前代成功模式,也不应受限于<strong>有限的低质量输入</strong>,而应<strong>忠于自我</strong>,以<strong>独特</strong>的"vibe”和<strong>玩乐精神</strong>去<strong>自由探索</strong>。这就像在说,别做别人的影子,去创造属于你自己的"游戏规则”!
|
||||
<a href="https://x.com/RyanMfer/status/1932387601341984815">Link</a></li>
|
||||
<li>用户wwwgoubuli分享了AI在实际工作中的一个有趣转变。他提到,远程团队成员初时因担心被视为偷懒而<strong>不敢充分使用AI</strong>,但在他多次分享AI"正确用法”后,团队逐渐"放开手脚”,结果代码的<strong>注释、规范和质量</strong>均显著提升,同事们也展现出更高的<strong>自信</strong>。这简直是AI赋能团队效率提升的"教科书式”案例,打破了心中的"AI焦虑”。
|
||||
<a href="https://x.com/wwwgoubuli/status/1932358909865480333">Link</a></li>
|
||||
<li>黄赟在推文中对苹果的"<strong>Liquid Glass</strong>”技术表达了极大的热情,他认为这项技术并非仅仅是视觉上的美化,而是GUI软件为支持<strong>多模态AI和AR/MR</strong>、从屏幕向<strong>空间计算</strong>演进的必然本质变化。黄赟推测苹果不急于推出Apple Intelligence Model,可能正是在为更大范围地将AI渗透到<strong>3D空间</strong>做准备,这预示着苹果股票将再次腾飞。欲了解更多,请访问<a href="https://x.com/huangyun_122/status/1932810735194943909">原推文</a>。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig"><img src="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>杨毅在推文中阐述了他钟爱<strong>AI Agent</strong>的原因,认为它们能直接高效地解决问题,与许多工作中因"人情世故”而产生的低效与"造势”形成鲜明对比,并强调AI Agent只为结果和效率付费。详情可见<a href="https://x.com/Yangyixxxx/status/1932777869639626876">此推文</a>。</li>
|
||||
<li>Meng Shao则分享了AI工程师12项被低估但长期回报高的关键技能,其中包括<strong>编写高质量提示词</strong>、<strong>构建与调试数据管道</strong>以及<strong>理解延迟与性能权衡</strong>等实践能力。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=orig"><img src="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>Shing发帖宣布,<strong>Arc</strong>浏览器的新产品<strong>Dia</strong>将于2025年6月11日为Arc会员提供早鸟体验,邀请好奇用户率先尝鲜,访问<a href="https://x.com/shing19_eth/status/1932686185434063352">此链接</a>了解更多。</li>
|
||||
<li><strong>Sam Altman</strong>在社交媒体上表示,其团队的<strong>开源权重模型</strong>发布将推迟至今年夏末,而非六月,原因是研究团队取得了一项"<strong>意料之外的突破</strong>”,他相信这次成果<strong>值得等待</strong>。这一延迟旨在完善这项非凡的新进展。<a href="https://x.com/dotey/status/1932584576276210004">Link</a></li>
|
||||
</ol>
|
||||
|
||||
</main>
|
||||
@@ -224,7 +218,7 @@
|
||||
<nav class="nav-wrapper" aria-label="Page navigation">
|
||||
<!-- Mobile navigation buttons -->
|
||||
|
||||
<a rel="next prefetch" href="daily/2025-06-11.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<a rel="next prefetch" href="daily/2025-06-12.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
|
||||
@@ -235,7 +229,7 @@
|
||||
|
||||
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
||||
|
||||
<a rel="next prefetch" href="daily/2025-06-11.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<a rel="next prefetch" href="daily/2025-06-12.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
@@ -167,59 +167,99 @@
|
||||
|
||||
<div id="content" class="content">
|
||||
<main>
|
||||
<h1 id="ai洞察日报-2025611"><a class="header" href="#ai洞察日报-2025611">AI洞察日报 2025/6/11</a></h1>
|
||||
<h1 id="ai洞察日报-2025612"><a class="header" href="#ai洞察日报-2025612">AI洞察日报 2025/6/12</a></h1>
|
||||
<p><strong>AI产品与功能更新</strong></p>
|
||||
<ol>
|
||||
<li><strong>豆包大模型家族</strong>将在2025 FORCE原动力大会上,重磅发布全新的<strong>豆包·视频生成模型</strong>。这款模型可谓"创意魔法棒”,它凭借高效结构和多任务统一建模等黑科技,不仅支持<strong>无缝多镜头叙事</strong>,还能<strong>精准响应多动作</strong>,甚至能像专业摄影师一样<strong>随心运镜</strong>,轻松生成写实、动漫等多种风格的<strong>高品质视频</strong>,简直是视频创作者的福音!
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388517021358447365987976.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388517021358447365987976.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>xAI开发的<strong>Grok</strong>人工智能正大刀阔斧地接管X平台的<strong>推荐算法</strong>,同时优化了评论排序机制。这意味着,平台将优先推荐<strong>高质量内容</strong>,而非仅仅看粉丝量,这无疑给那些粉丝较少但有真材实料的"小号”和新人带来了前所未有的曝光机会,旨在打造一个更公平、更开放的内容生态,让好内容不再"蒙尘”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514989498792027745193.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514989498792027745193.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>豆包App</strong>近期也对"一句话P图”功能进行了全面升级,它基于强大的SeedEdit 3.0模型,新增了一键添加/替换文字、质感风格迁移和局部图像编辑增强等一系列酷炫修图玩法。这波升级简直是把专业修图师请进了手机,让普通用户也能无需专业技能,轻松搞定个性化照片创作,让"修图小白”也能变身"修图大师”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514703219058043604298.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514703219058043604298.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>苹果在WWDC 2025大会上带来了iOS 26系统的"杀手级”功能——<strong>视觉智能</strong>。有了它,你可以在屏幕上的任何图片或信息上进行提问、搜索,甚至自动识别事件详情,简直是手机的"智能眼”。这项升级通过AI技术实现了屏幕内容的"一眼识别”,大大提升了交互体验的便捷性与智能化程度,还能自动提取事件信息加入日历,让你的数字生活更加省心。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514197880401555868249.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388514197880401555868249.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>好消息!<strong>沉浸式翻译</strong>迎来重大更新,现在已能对<strong>推特(X)视频</strong>进行<strong>实时翻译</strong>。即便视频没有原生字幕,它也能帮你"神同步”地显示<strong>中英双语字幕</strong>。这下,刷X平台视频再也不用担心语言不通了,简直是跨文化交流的"神助攻”,彻底消除了语言障碍,让世界更近。
|
||||
<a href="https://x.com/imxiaohu/status/1932299897388277804">Link</a></li>
|
||||
<li><strong>Mistral AI</strong>发布了首个专注于<strong>推理</strong>的开源语言模型<strong>Magistral</strong>,旨在解决现有大型语言模型在<strong>领域知识深度</strong>、<strong>推理透明度</strong>和<strong>多语言能力</strong>上的不足。其<strong>Flash Answers</strong>模式下推理速度比竞品快10倍,并原生支持<strong>链式思维(CoT)</strong>,可自动生成可解释的思考路径。模型提供开源版<strong>Magistral Small</strong>和企业版<strong>Magistral Medium</strong>(准确率接近GPT-4 Turbo),支持多语言推理且可本地部署。 <a href="https://mistral.ai/news/magistral">Link</a>
|
||||
<br/> <a href="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1"><img src="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Figma</strong>近日正式发布官方<strong>Model Context Protocol (MCP)<strong>服务,旨在通过更智能的数据传输方式,革命性地提升</strong>AI驱动的"设计到代码”工作流效率与准确性</strong>。该服务能够提取更详细的设计稿信息,并与主流开发工具和<strong>AI</strong>编码工具无缝集成,显著减少设计与开发间的摩擦。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>OpenAI</strong>近日推出了<strong>ChatGPT全新升级版模型o3-pro</strong>,其在处理复杂问题上更精准,尤其在<strong>科学研究、编程、教育和写作</strong>等领域展现出显著优势,并整合了网页搜索、文件分析等全套工具。尽管响应速度相对较慢,但其价格相较前代o1-pro大幅降低87%,并已向Pro和Team用户开放,标志着ChatGPT正从聊天机器人转型为高效工作助手。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>美国西北大学医学院研发的<strong>全球首个临床AI放射系统</strong>已在12家医院全面部署,它能在<strong>毫秒内识别危及生命的病症</strong>,并通过读取完整影像、生成95%报告,大幅提升医学影像诊断效率。该系统已将报告生成效率平均提升15.5%(CT影像分析甚至高达80%),有望显著缓解全球放射科医生短缺问题,并帮助医生更快做出诊断,尤其是在危急病例中。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Krea AI</strong>近期发布了其首款图像生成模型<strong>Krea1</strong>,该模型以卓越的<strong>美学控制力</strong>和<strong>画质表现</strong>,解决了传统AI图像生成中存在的"AI外观”问题,并支持风格参考及定制化训练。目前,Krea AI已开放Krea1的<strong>免费测试版</strong>,赋能创作者将创意转化为高质量视觉作品,同时还提供了高达<strong>4K高清</strong>的图像增强功能。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>AI前沿研究</strong></p>
|
||||
<ol>
|
||||
<li>香港大学和华为诺亚方舟实验室强强联手,推出了颠覆性的<strong>FUDOKI</strong>模型。这款模型采用<strong>非掩码离散流匹配架构</strong>,成功突破了传统自回归模型的束缚,实现了更加灵活高效的<strong>多模态生成与理解</strong>能力。它通过独特的<strong>并行去噪机制</strong>,显著提升了复杂推理和生成任务的表现,尤其在<strong>图像生成</strong>方面表现惊艳,为未来<strong>通用人工智能</strong>的发展铺平了道路。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202405161743136484_4.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202405161743136484_4.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>香港科技大学和快手科技的研究团队联合发布了<strong>EvoSearch(进化搜索)技术</strong>,这简直是AI作画领域的一股清流!它彻底颠覆了以往"大模型、大算力”的固有思维,巧妙地将达尔文的进化论思想融入AI生成过程,让那些"小个子”模型也能生成超越甚至媲美"大块头”的<strong>高质量图像和视频</strong>。这项突破性技术有望开启AI创作的**"智能进化”时代**,让AI模型在推理阶段释放更深层次的潜力。相关项目主页、代码和论文链接已发布:<a href="https://tinnerhrhe.github.io/evosearch/">https://tinnerhrhe.github.io/evosearch/</a>、<a href="https://github.com/tinnerhrhe/EvoSearch-codes">https://github.com/tinnerhrhe/EvoSearch-codes</a>、<a href="https://arxiv.org/abs/2505.17618">https://arxiv.org/abs/2505.17618</a>。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516498517715873339996.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516498517715873339996.png" alt="图片" /></a> <br/>
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516503306155376085044.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0610/6388516503306155376085044.png" alt="图片" /></a> <br/></li>
|
||||
<li>一篇名为"<strong>玩中泛化:通过游戏学习推理</strong>”的学术论文揭示了令人兴奋的发现:<strong>多模态大型语言模型(MLLMs)<strong>通过玩简单的</strong>街机游戏</strong>,竟然能<strong>显著提升其跨领域的多模态推理能力</strong>,甚至超越了在特定数据上训练的<strong>专业模型</strong>!这无疑为未来<strong>通用AI能力的培养</strong>指明了一条充满趣味的新方向,让AI在"玩乐”中变得更聪明。
|
||||
<a href="https://arxiv.org/abs/2506.08011">此链接</a></li>
|
||||
<li>新论文《梦境之地》(<strong>Dreamland</strong>)提出了一种结合物理模拟器与大型生成模型的混合框架。它的目标是创造出高度可控且逼真的动态虚拟世界,不仅显著提升了图像质量与可控性,更重要的是,有望为<strong>具身AI智能体</strong>的训练提供一个理想的"游乐场”和"实验室”,助力AI在现实世界中更好地学习和行动。
|
||||
<a href="https://arxiv.org/abs/2506.08006">Link</a></li>
|
||||
<li>北京大学、字节跳动和卡内基梅隆大学联合发布了<strong>PartCrafter</strong>项目,该技术能从单张RGB图像直接生成<strong>高精度、结构化</strong>的3D模型,彻底颠覆了传统"先分割再重建”的复杂流程,并将生成时间缩短至约40秒。PartCrafter最引人注目的是其"<strong>透视</strong>”能力,即使输入图像中部分结构被遮挡,也能推断并生成完整的3D几何结构,展现了AI在3D生成领域的巨大潜力,对<strong>游戏开发</strong>、<strong>虚拟现实</strong>和<strong>工业设计</strong>等领域具有广泛应用前景。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>伊利诺伊大学香槟分校和加州大学伯克利分校的研究人员共同开发了<strong>突破性AI框架AlphaOne</strong>,它让大型语言模型能通过"<strong>先慢思考后快思考</strong>”策略精确调控推理过程,解决了现有大模型"过度思考”与"思考不足”的痛点。实验证明,AlphaOne在准确率上平均提升了6.15%,并显著降低约21%的计算成本,为企业级AI应用提供了高效可靠的工具,其代码即将发布于<a href="https://github.com/ASTRAL-Group/AlphaOne">GitHub</a>。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>一篇名为<strong>DiscoVLA</strong>的学术论文提出了一种创新方法,通过同步处理视觉、语言和对齐方面的差异,显著提升了<strong>视频文本检索</strong>的效率与准确性,尤其是在MSRVTT数据集上表现优异,为参数高效的视频文本检索提供了新的思路,更多信息可查看<a href="https://arxiv.org/abs/2506.08887">论文链接</a>。</li>
|
||||
</ol>
|
||||
<p><strong>AI行业展望与社会影响</strong></p>
|
||||
<ol>
|
||||
<li>理想汽车近期进行了组织架构的"大变身”,正式成立了**"空间机器人”<strong>和</strong>"穿戴机器人”<strong>两个全新的二级部门。这不仅仅是部门调整,更预示着理想汽车正从传统的汽车制造商转型为</strong>智能出行生态构建者**。他们旨在通过机器人技术,构建一个涵盖车内"第三空间”和车外智能穿戴设备的完整智能生活服务体系,这无疑将为理想汽车在竞争激烈的市场中带来新的差异化优势,让"第三空间”战略不再只是一个概念。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202105061137083176_6.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202105061137083176_6.jpg" alt="理想汽车" /></a> <br/></li>
|
||||
<li>俄亥俄州立大学宣布从今年起,将强制所有学生接受<strong>人工智能(AI)培训</strong>,这简直是为未来职场"量身定制”的技能包!学校推出了**"AI流利度”计划**,将AI教育全面融入本科生课程,旨在培养学生将专业知识与AI技术有效结合的能力。当然,学校也强调学生不得利用生成性AI来"蒙混过关”,同时加强教师培训以维护<strong>学术诚信</strong>。此举旨在确保每位毕业生都能在其专业领域有效应用AI,并积极响应俄亥俄州AI教育联盟在K-12教育中推动AI教育的努力,让AI真正成为每个人的"超级助手”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202306251749094253_12.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202306251749094253_12.jpg" alt="学习 考试 高考 教育 (1)" /></a> <br/></li>
|
||||
<li>知名思考者李继刚一针见血地指出,当AI技术变得越发<strong>高效强大</strong>时,人类的<strong>判断力</strong>、<strong>品味</strong>和对事物<strong>目的的理解</strong>反而会变得更为<strong>硬核</strong>。因为AI虽然能生成万千方案并完美执行,却无法替代人类进行<strong>选择</strong>、定义<strong>美</strong>,更无法洞悉复杂且深邃的<strong>人性</strong>。这提醒我们,在AI时代,真正有价值的,或许正是那些AI无法企及的"人类专属技能”。
|
||||
<a href="https://m.okjike.com/originalPosts/68480c352b31fa0880f554c5">Link</a></li>
|
||||
<li>OpenAI首席执行官<strong>Sam Altman</strong>在其最新博客文章中预测,<strong>AI技术</strong>已跨越关键临界点,未来将迎来**"温和奇点”<strong>。他预计到</strong>2026年**,AI系统将能够自主发现新颖见解;到<strong>2027年</strong>,AI驱动的机器人将在现实世界执行任务;而到<strong>2030年代</strong>,人类将进入智能与能量极大丰富的时代,彻底重塑经济与社会。他强调需加大对AI基础设施的投资并加强治理和安全措施。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>OpenAI 首席科学家 <strong>Ilya Sutskever</strong> 近日在母校多伦多大学演讲,分享了他对<strong>人工智能 (AI)</strong> 发展的深刻见解,强调 <strong>AI</strong> 正在迅速改变学习和工作模式。他预测 <strong>AI</strong> 未来有潜力完成所有人类任务,但也带来了巨大挑战,需要人类思考如何合理利用这一变革。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>特朗普政府一项旨在推动 <strong>AI</strong> 技术在联邦政府应用的全新计划 "<strong>AI.gov</strong>” 近日在 <strong>GitHub</strong> 上意外泄露。该计划包括聊天机器人、全能 <strong>API</strong> 及实时监控工具,旨在自动化联邦工作,但专家对此可能带来的<strong>数据安全风险</strong>表示担忧。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>开源TOP项目</strong></p>
|
||||
<ol>
|
||||
<li>小红书的 hi lab 团队近日献出了一份"大礼”——首个开源文本大模型<strong>dots.llm1</strong>!这款拥有1420亿参数的<strong>混合专家(MoE)语言模型</strong>,在海量真实数据训练后,其性能竟然能媲美阿里巴巴的Qwen2.5-72B,这简直是模型界的"黑马”!此次开源不仅彰显了小红书在人工智能领域的技术雄心,更旨在提供更智能化的服务,并激励开发者们一起加入AI研究的"大合唱”。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/201811151633429180_32.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/201811151633429180_32.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>近期,GitHub上两个<strong>AI相关</strong>的项目人气爆棚。其中,拥有10785星的"<strong>newsnow</strong>”项目,它旨在为用户提供<strong>优雅的实时热点新闻阅读体验</strong>,让信息获取既便捷又高效,简直是"新闻控”的福音,地址在这里:<a href="https://github.com/ourongxing/newsnow">此链接</a>。另一个是"<strong>GenAI_Agents</strong>”项目,以12884星的高热度,为开发者提供了<strong>从基础到高级的生成式AI智能体技术教程与实现</strong>,旨在赋能构建更智能的<strong>交互式AI系统</strong>,详情可访问:<a href="https://github.com/NirDiamant/GenAI_Agents">此链接</a>。</li>
|
||||
<li><strong>Hyperswitch</strong>是一个用Rust编写的开源支付交换系统,致力于实现<strong>快速、可靠且经济实惠</strong>的支付体验,已获得<strong>20606</strong>个星标,详情可访问其<a href="https://github.com/juspay/hyperswitch">GitHub</a>页面。</li>
|
||||
<li>同时,有两个备受关注的开源项目:"<strong>awesome</strong>”项目(<a href="https://github.com/sindresorhus/awesome">Link</a>)拥有365526颗星,提供了关于各种<strong>有趣主题</strong>的<strong>精选列表</strong>;而获得11717颗星的<strong>vosk-api</strong>项目(<a href="https://github.com/alphacep/vosk-api">Link</a>)则是一个功能强大的<strong>离线语音识别API</strong>,支持Android、iOS、树莓派及服务器等多平台。</li>
|
||||
</ol>
|
||||
<p><strong>社媒分享</strong></p>
|
||||
<ol>
|
||||
<li>Gorden Sun在社交媒体上分享了<strong>Mirage</strong>虚拟人模型产品,这款产品简直是"数字分身”的魔法师!它能通过音频驱动,生成生动、嘴型同步且表情丰富的<strong>虚拟人视频</strong>,栩栩如生。Gorden Sun还特别强调,该产品的详细技术报告对研究人员具有极高的参考价值,看来又将引发一场虚拟人技术的"军备竞赛”。
|
||||
<a href="https://x.com/Gorden_Sun/status/1932446920884334635">Link</a></li>
|
||||
<li>Sam Altman在X平台发文宣布,<strong>o3产品</strong>价格已大幅下调80%,这简直是"福利大放送”!他表达了对用户创新使用的期待,并预告了<strong>o3-pro版本</strong>也将提供令人满意的定价。看来,Sora之父又在鼓励大家放开手脚,用更低的成本去探索AI的无限可能了。
|
||||
<a href="https://x.com/sama/status/1932434606558462459">Link</a></li>
|
||||
<li>Ryan ᵐᶠᵉʳ 🦄d/acc抛出了一个关于<strong>下一代创业者</strong>的深刻观点:他们不应被束缚于模仿乔布斯等前代成功模式,也不应受限于<strong>有限的低质量输入</strong>,而应<strong>忠于自我</strong>,以<strong>独特</strong>的"vibe”和<strong>玩乐精神</strong>去<strong>自由探索</strong>。这就像在说,别做别人的影子,去创造属于你自己的"游戏规则”!
|
||||
<a href="https://x.com/RyanMfer/status/1932387601341984815">Link</a></li>
|
||||
<li>用户wwwgoubuli分享了AI在实际工作中的一个有趣转变。他提到,远程团队成员初时因担心被视为偷懒而<strong>不敢充分使用AI</strong>,但在他多次分享AI"正确用法”后,团队逐渐"放开手脚”,结果代码的<strong>注释、规范和质量</strong>均显著提升,同事们也展现出更高的<strong>自信</strong>。这简直是AI赋能团队效率提升的"教科书式”案例,打破了心中的"AI焦虑”。
|
||||
<a href="https://x.com/wwwgoubuli/status/1932358909865480333">Link</a></li>
|
||||
<li>黄赟在推文中对苹果的"<strong>Liquid Glass</strong>”技术表达了极大的热情,他认为这项技术并非仅仅是视觉上的美化,而是GUI软件为支持<strong>多模态AI和AR/MR</strong>、从屏幕向<strong>空间计算</strong>演进的必然本质变化。黄赟推测苹果不急于推出Apple Intelligence Model,可能正是在为更大范围地将AI渗透到<strong>3D空间</strong>做准备,这预示着苹果股票将再次腾飞。欲了解更多,请访问<a href="https://x.com/huangyun_122/status/1932810735194943909">原推文</a>。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig"><img src="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>杨毅在推文中阐述了他钟爱<strong>AI Agent</strong>的原因,认为它们能直接高效地解决问题,与许多工作中因"人情世故”而产生的低效与"造势”形成鲜明对比,并强调AI Agent只为结果和效率付费。详情可见<a href="https://x.com/Yangyixxxx/status/1932777869639626876">此推文</a>。</li>
|
||||
<li>Meng Shao则分享了AI工程师12项被低估但长期回报高的关键技能,其中包括<strong>编写高质量提示词</strong>、<strong>构建与调试数据管道</strong>以及<strong>理解延迟与性能权衡</strong>等实践能力。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=orig"><img src="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>Shing发帖宣布,<strong>Arc</strong>浏览器的新产品<strong>Dia</strong>将于2025年6月11日为Arc会员提供早鸟体验,邀请好奇用户率先尝鲜,访问<a href="https://x.com/shing19_eth/status/1932686185434063352">此链接</a>了解更多。</li>
|
||||
<li><strong>Sam Altman</strong>在社交媒体上表示,其团队的<strong>开源权重模型</strong>发布将推迟至今年夏末,而非六月,原因是研究团队取得了一项"<strong>意料之外的突破</strong>”,他相信这次成果<strong>值得等待</strong>。这一延迟旨在完善这项非凡的新进展。<a href="https://x.com/dotey/status/1932584576276210004">Link</a></li>
|
||||
</ol>
|
||||
<div style="break-before: page; page-break-before: always;"></div><h1 id="ai洞察日报-2025611-1"><a class="header" href="#ai洞察日报-2025611-1">AI洞察日报 2025/6/11</a></h1>
|
||||
<div style="break-before: page; page-break-before: always;"></div><h1 id="ai洞察日报-2025612-1"><a class="header" href="#ai洞察日报-2025612-1">AI洞察日报 2025/6/12</a></h1>
|
||||
<p><strong>AI产品与功能更新</strong></p>
|
||||
<ol>
|
||||
<li><strong>Mistral AI</strong>发布了首个专注于<strong>推理</strong>的开源语言模型<strong>Magistral</strong>,旨在解决现有大型语言模型在<strong>领域知识深度</strong>、<strong>推理透明度</strong>和<strong>多语言能力</strong>上的不足。其<strong>Flash Answers</strong>模式下推理速度比竞品快10倍,并原生支持<strong>链式思维(CoT)</strong>,可自动生成可解释的思考路径。模型提供开源版<strong>Magistral Small</strong>和企业版<strong>Magistral Medium</strong>(准确率接近GPT-4 Turbo),支持多语言推理且可本地部署。 <a href="https://mistral.ai/news/magistral">Link</a>
|
||||
<br/> <a href="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1"><img src="https://assets-v2.circle.so/1ktkb1h1bolve7kykg6lziw7jov1" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Figma</strong>近日正式发布官方<strong>Model Context Protocol (MCP)<strong>服务,旨在通过更智能的数据传输方式,革命性地提升</strong>AI驱动的"设计到代码”工作流效率与准确性</strong>。该服务能够提取更详细的设计稿信息,并与主流开发工具和<strong>AI</strong>编码工具无缝集成,显著减少设计与开发间的摩擦。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523888922649161116355.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>OpenAI</strong>近日推出了<strong>ChatGPT全新升级版模型o3-pro</strong>,其在处理复杂问题上更精准,尤其在<strong>科学研究、编程、教育和写作</strong>等领域展现出显著优势,并整合了网页搜索、文件分析等全套工具。尽管响应速度相对较慢,但其价格相较前代o1-pro大幅降低87%,并已向Pro和Team用户开放,标志着ChatGPT正从聊天机器人转型为高效工作助手。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522995750601489730264.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522996825463752393708.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>美国西北大学医学院研发的<strong>全球首个临床AI放射系统</strong>已在12家医院全面部署,它能在<strong>毫秒内识别危及生命的病症</strong>,并通过读取完整影像、生成95%报告,大幅提升医学影像诊断效率。该系统已将报告生成效率平均提升15.5%(CT影像分析甚至高达80%),有望显著缓解全球放射科医生短缺问题,并帮助医生更快做出诊断,尤其是在危急病例中。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202307181418295015_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li><strong>Krea AI</strong>近期发布了其首款图像生成模型<strong>Krea1</strong>,该模型以卓越的<strong>美学控制力</strong>和<strong>画质表现</strong>,解决了传统AI图像生成中存在的"AI外观”问题,并支持风格参考及定制化训练。目前,Krea AI已开放Krea1的<strong>免费测试版</strong>,赋能创作者将创意转化为高质量视觉作品,同时还提供了高达<strong>4K高清</strong>的图像增强功能。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388522900588735216957802.png" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>AI前沿研究</strong></p>
|
||||
<ol>
|
||||
<li>北京大学、字节跳动和卡内基梅隆大学联合发布了<strong>PartCrafter</strong>项目,该技术能从单张RGB图像直接生成<strong>高精度、结构化</strong>的3D模型,彻底颠覆了传统"先分割再重建”的复杂流程,并将生成时间缩短至约40秒。PartCrafter最引人注目的是其"<strong>透视</strong>”能力,即使输入图像中部分结构被遮挡,也能推断并生成完整的3D几何结构,展现了AI在3D生成领域的巨大潜力,对<strong>游戏开发</strong>、<strong>虚拟现实</strong>和<strong>工业设计</strong>等领域具有广泛应用前景。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388525842061362121470345.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>伊利诺伊大学香槟分校和加州大学伯克利分校的研究人员共同开发了<strong>突破性AI框架AlphaOne</strong>,它让大型语言模型能通过"<strong>先慢思考后快思考</strong>”策略精确调控推理过程,解决了现有大模型"过度思考”与"思考不足”的痛点。实验证明,AlphaOne在准确率上平均提升了6.15%,并显著降低约21%的计算成本,为企业级AI应用提供了高效可靠的工具,其代码即将发布于<a href="https://github.com/ASTRAL-Group/AlphaOne">GitHub</a>。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523084741801708351334.png" alt="图片" title="img" /></a> <br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/2025/0611/6388523085448158916607664.png" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>一篇名为<strong>DiscoVLA</strong>的学术论文提出了一种创新方法,通过同步处理视觉、语言和对齐方面的差异,显著提升了<strong>视频文本检索</strong>的效率与准确性,尤其是在MSRVTT数据集上表现优异,为参数高效的视频文本检索提供了新的思路,更多信息可查看<a href="https://arxiv.org/abs/2506.08887">论文链接</a>。</li>
|
||||
</ol>
|
||||
<p><strong>AI行业展望与社会影响</strong></p>
|
||||
<ol>
|
||||
<li>OpenAI首席执行官<strong>Sam Altman</strong>在其最新博客文章中预测,<strong>AI技术</strong>已跨越关键临界点,未来将迎来**"温和奇点”<strong>。他预计到</strong>2026年**,AI系统将能够自主发现新颖见解;到<strong>2027年</strong>,AI驱动的机器人将在现实世界执行任务;而到<strong>2030年代</strong>,人类将进入智能与能量极大丰富的时代,彻底重塑经济与社会。他强调需加大对AI基础设施的投资并加强治理和安全措施。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202412271635331372_1.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>OpenAI 首席科学家 <strong>Ilya Sutskever</strong> 近日在母校多伦多大学演讲,分享了他对<strong>人工智能 (AI)</strong> 发展的深刻见解,强调 <strong>AI</strong> 正在迅速改变学习和工作模式。他预测 <strong>AI</strong> 未来有潜力完成所有人类任务,但也带来了巨大挑战,需要人类思考如何合理利用这一变革。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202305291455510902_2.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>特朗普政府一项旨在推动 <strong>AI</strong> 技术在联邦政府应用的全新计划 "<strong>AI.gov</strong>” 近日在 <strong>GitHub</strong> 上意外泄露。该计划包括聊天机器人、全能 <strong>API</strong> 及实时监控工具,旨在自动化联邦工作,但专家对此可能带来的<strong>数据安全风险</strong>表示担忧。
|
||||
<br/> <a href="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg"><img src="https://autoproxy.justlikemaki.vip/?pp=https://pic.chinaz.com/picmap/202304251756303409_0.jpg" alt="图片" title="img" /></a> <br/></li>
|
||||
</ol>
|
||||
<p><strong>开源TOP项目</strong></p>
|
||||
<ol>
|
||||
<li><strong>Hyperswitch</strong>是一个用Rust编写的开源支付交换系统,致力于实现<strong>快速、可靠且经济实惠</strong>的支付体验,已获得<strong>20606</strong>个星标,详情可访问其<a href="https://github.com/juspay/hyperswitch">GitHub</a>页面。</li>
|
||||
<li>同时,有两个备受关注的开源项目:"<strong>awesome</strong>”项目(<a href="https://github.com/sindresorhus/awesome">Link</a>)拥有365526颗星,提供了关于各种<strong>有趣主题</strong>的<strong>精选列表</strong>;而获得11717颗星的<strong>vosk-api</strong>项目(<a href="https://github.com/alphacep/vosk-api">Link</a>)则是一个功能强大的<strong>离线语音识别API</strong>,支持Android、iOS、树莓派及服务器等多平台。</li>
|
||||
</ol>
|
||||
<p><strong>社媒分享</strong></p>
|
||||
<ol>
|
||||
<li>黄赟在推文中对苹果的"<strong>Liquid Glass</strong>”技术表达了极大的热情,他认为这项技术并非仅仅是视觉上的美化,而是GUI软件为支持<strong>多模态AI和AR/MR</strong>、从屏幕向<strong>空间计算</strong>演进的必然本质变化。黄赟推测苹果不急于推出Apple Intelligence Model,可能正是在为更大范围地将AI渗透到<strong>3D空间</strong>做准备,这预示着苹果股票将再次腾飞。欲了解更多,请访问<a href="https://x.com/huangyun_122/status/1932810735194943909">原推文</a>。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig"><img src="https://pbs.twimg.com/media/GtJGO_QbMAQcGq3?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>杨毅在推文中阐述了他钟爱<strong>AI Agent</strong>的原因,认为它们能直接高效地解决问题,与许多工作中因"人情世故”而产生的低效与"造势”形成鲜明对比,并强调AI Agent只为结果和效率付费。详情可见<a href="https://x.com/Yangyixxxx/status/1932777869639626876">此推文</a>。</li>
|
||||
<li>Meng Shao则分享了AI工程师12项被低估但长期回报高的关键技能,其中包括<strong>编写高质量提示词</strong>、<strong>构建与调试数据管道</strong>以及<strong>理解延迟与性能权衡</strong>等实践能力。
|
||||
<br/> <a href="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=orig"><img src="https://pbs.twimg.com/media/GtJboRPbMAAQRyC?format=jpg&name=orig" alt="图片" title="img" /></a> <br/></li>
|
||||
<li>Shing发帖宣布,<strong>Arc</strong>浏览器的新产品<strong>Dia</strong>将于2025年6月11日为Arc会员提供早鸟体验,邀请好奇用户率先尝鲜,访问<a href="https://x.com/shing19_eth/status/1932686185434063352">此链接</a>了解更多。</li>
|
||||
<li><strong>Sam Altman</strong>在社交媒体上表示,其团队的<strong>开源权重模型</strong>发布将推迟至今年夏末,而非六月,原因是研究团队取得了一项"<strong>意料之外的突破</strong>”,他相信这次成果<strong>值得等待</strong>。这一延迟旨在完善这项非凡的新进展。<a href="https://x.com/dotey/status/1932584576276210004">Link</a></li>
|
||||
</ol>
|
||||
<div style="break-before: page; page-break-before: always;"></div><h1 id="ai洞察日报-2025611"><a class="header" href="#ai洞察日报-2025611">AI洞察日报 2025/6/11</a></h1>
|
||||
<p><strong>AI产品与功能更新</strong></p>
|
||||
<ol>
|
||||
<li><strong>豆包大模型家族</strong>将在2025 FORCE原动力大会上,重磅发布全新的<strong>豆包·视频生成模型</strong>。这款模型可谓"创意魔法棒”,它凭借高效结构和多任务统一建模等黑科技,不仅支持<strong>无缝多镜头叙事</strong>,还能<strong>精准响应多动作</strong>,甚至能像专业摄影师一样<strong>随心运镜</strong>,轻松生成写实、动漫等多种风格的<strong>高品质视频</strong>,简直是视频创作者的福音!
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -27,6 +27,6 @@
|
||||
<!-- Custom theme stylesheets -->
|
||||
</head>
|
||||
<body class="sidebar-iframe-inner">
|
||||
<ol class="chapter"><li class="chapter-item expanded affix "><a href="2025-06-11.html" target="_parent">Today</a></li><li class="chapter-item expanded affix "><li class="part-title">2025-06</li><li class="chapter-item expanded "><a href="daily/2025-06-11.html" target="_parent"><strong aria-hidden="true">1.</strong> 06-11-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-10.html" target="_parent"><strong aria-hidden="true">2.</strong> 06-10-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-09.html" target="_parent"><strong aria-hidden="true">3.</strong> 06-09-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-08.html" target="_parent"><strong aria-hidden="true">4.</strong> 06-08-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-07.html" target="_parent"><strong aria-hidden="true">5.</strong> 06-07-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-06.html" target="_parent"><strong aria-hidden="true">6.</strong> 06-06-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-05.html" target="_parent"><strong aria-hidden="true">7.</strong> 06-05-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-04.html" target="_parent"><strong aria-hidden="true">8.</strong> 06-04-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-03.html" target="_parent"><strong aria-hidden="true">9.</strong> 06-03-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-02.html" target="_parent"><strong aria-hidden="true">10.</strong> 06-02-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-01.html" target="_parent"><strong aria-hidden="true">11.</strong> 06-01-日刊</a></li></ol>
|
||||
<ol class="chapter"><li class="chapter-item expanded affix "><a href="2025-06-12.html" target="_parent">Today</a></li><li class="chapter-item expanded affix "><li class="part-title">2025-06</li><li class="chapter-item expanded "><a href="daily/2025-06-12.html" target="_parent"><strong aria-hidden="true">1.</strong> 06-12-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-11.html" target="_parent"><strong aria-hidden="true">2.</strong> 06-11-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-10.html" target="_parent"><strong aria-hidden="true">3.</strong> 06-10-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-09.html" target="_parent"><strong aria-hidden="true">4.</strong> 06-09-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-08.html" target="_parent"><strong aria-hidden="true">5.</strong> 06-08-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-07.html" target="_parent"><strong aria-hidden="true">6.</strong> 06-07-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-06.html" target="_parent"><strong aria-hidden="true">7.</strong> 06-06-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-05.html" target="_parent"><strong aria-hidden="true">8.</strong> 06-05-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-04.html" target="_parent"><strong aria-hidden="true">9.</strong> 06-04-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-03.html" target="_parent"><strong aria-hidden="true">10.</strong> 06-03-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-02.html" target="_parent"><strong aria-hidden="true">11.</strong> 06-02-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-01.html" target="_parent"><strong aria-hidden="true">12.</strong> 06-01-日刊</a></li></ol>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -8,7 +8,7 @@ class MDBookSidebarScrollbox extends HTMLElement {
|
||||
super();
|
||||
}
|
||||
connectedCallback() {
|
||||
this.innerHTML = '<ol class="chapter"><li class="chapter-item expanded affix "><a href="2025-06-11.html">Today</a></li><li class="chapter-item expanded affix "><li class="part-title">2025-06</li><li class="chapter-item expanded "><a href="daily/2025-06-11.html"><strong aria-hidden="true">1.</strong> 06-11-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-10.html"><strong aria-hidden="true">2.</strong> 06-10-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-09.html"><strong aria-hidden="true">3.</strong> 06-09-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-08.html"><strong aria-hidden="true">4.</strong> 06-08-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-07.html"><strong aria-hidden="true">5.</strong> 06-07-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-06.html"><strong aria-hidden="true">6.</strong> 06-06-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-05.html"><strong aria-hidden="true">7.</strong> 06-05-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-04.html"><strong aria-hidden="true">8.</strong> 06-04-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-03.html"><strong aria-hidden="true">9.</strong> 06-03-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-02.html"><strong aria-hidden="true">10.</strong> 06-02-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-01.html"><strong aria-hidden="true">11.</strong> 06-01-日刊</a></li></ol>';
|
||||
this.innerHTML = '<ol class="chapter"><li class="chapter-item expanded affix "><a href="2025-06-12.html">Today</a></li><li class="chapter-item expanded affix "><li class="part-title">2025-06</li><li class="chapter-item expanded "><a href="daily/2025-06-12.html"><strong aria-hidden="true">1.</strong> 06-12-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-11.html"><strong aria-hidden="true">2.</strong> 06-11-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-10.html"><strong aria-hidden="true">3.</strong> 06-10-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-09.html"><strong aria-hidden="true">4.</strong> 06-09-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-08.html"><strong aria-hidden="true">5.</strong> 06-08-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-07.html"><strong aria-hidden="true">6.</strong> 06-07-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-06.html"><strong aria-hidden="true">7.</strong> 06-06-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-05.html"><strong aria-hidden="true">8.</strong> 06-05-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-04.html"><strong aria-hidden="true">9.</strong> 06-04-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-03.html"><strong aria-hidden="true">10.</strong> 06-03-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-02.html"><strong aria-hidden="true">11.</strong> 06-02-日刊</a></li><li class="chapter-item expanded "><a href="daily/2025-06-01.html"><strong aria-hidden="true">12.</strong> 06-01-日刊</a></li></ol>';
|
||||
// Set the current, active page, and reveal it if it's hidden
|
||||
let current_page = document.location.href.toString().split("#")[0].split("?")[0];
|
||||
if (current_page.endsWith("/")) {
|
||||
|
||||
Reference in New Issue
Block a user