沟通可以像 “呼吸” 一样简单 最近在团队小范围分享了关于沟通的心得,之所以选择这个主题,是因为在追求管理效能与业务突破的路上,沟通是其中最高价值的管理活动,也是释放团队潜力、提升产品竞争力的关键密码,许多困扰团队许久的问题,根源往往藏在一些细枝末节里。这些内容也是从其他渠道学习提取的知识,期待和大家一起,在高效沟通这条道路上不断探索、共同进步。 我们为什么总在沟通上 “卡壳” 我们常常遇到沟通不畅的情况,这背后往往与...
ARTS #227 | 分享对 Rill-Flow 结合 Dify 的看法 阳朔很美好~ Algorithm 本周选择的算法题是:Maximum Value of an Ordered Triplet II。 class Solution: def maximumTripletValue(self, nums: List[int]) -> int: n = len(nums) leftMax = [0]...
ARTS #226 | 海边 周末来海边 “上班” 了~ Algorithm 本周选择的算法题是:count-the-number-of-complete-components。 class Solution: def countCompleteComponents(self, n: int, edges: List[List[int]]) -> int: graph = ...
ARTS #225 | 胡辣汤与 EliGen 北京一家特别棒的胡辣汤,名字叫方中山 Algorithm 本周选择的算法题是:Minimum Recolors to Get K Consecutive Black Blocks。 class Solution: def minimumRecolors(self, blocks: str, k: int) -> int: whites = bl...
LRM 在编程中大放异彩 Competitive Programming with Large Reasoning Models https://arxiv.org/abs/2502.06807 从 o1 到 o3,OpenAI 的进阶之路 OpenAI 的 o3 模型在编程领域又掀起了一阵热潮,要理解 o3,咱们得先从它的 “前辈” o1 说起。OpenAI 的 o1 和 deepseek 一样,...
扩散模型推理计算 Scaling 的新探索 Inference-Time Scaling for Diffusion Models beyond Scaling Denoising Steps https://arxiv.org/abs/2501.09732 论文表明,推理时 scaling 对扩散模型也是有效的,虽然去噪步骤的增加在达到某个阈值后会趋于平稳,但增加推理时间可以显著提高扩散模型生成的样本质量。 扩散模...
Ferret-UI 2 学习笔记 很多爱心~ 它是什么 Ferret-UI 2: Mastering Universal User Interface Understanding Across Platforms https://arxiv.org/abs/2410.18967 它是苹果推出的跨平台 UI 理解模型,相比第一版 Ferret-UI,这一版本有三大创新: 具有平台多样...
ARTS #224 | 初识 MoE 一次绝佳的啤酒之旅,第一次感受直接从发酵罐里打精酿啤酒的味道~ Algorithm 本周选择的算法题是:Shifting Letters II。 class Solution: def shiftingLetters(self, s: str, shifts: List[List[int]]) -> str: n = len(s) ...
ARTS #223 | CacheBlend & AWQ 福建西部连城的冠豸山,每个季节都有不同的美景~ Algorithm 本周选择的算法题是:Find Building Where Alice and Bob Can Meet。 class Solution: def leftmostBuildingQueries(self, heights: List[int], queries: List[List[int]]) ...
ARTS #222 | WAM 与 LMDeploy 家里多了一个可爱的小物件,萌萌的垃圾桶~ Algorithm 本周选择的算法题是:Smallest String With A Given Numeric Value。 class Solution: def getSmallestString(self, n: int, k: int) -> str: result = [] ...