注册并分享邀请链接,可获得视频播放与邀请奖励。

与「FutureWork」相关的搜索结果

FutureWork 贴吧
一个关键词就是一个贴吧,路径全站唯一。
创建贴吧
用户
未找到
包含 FutureWork 的内容
As neuroscience informs better #FutureWork# office design, @ryanjmullenix says employers should create spaces with varying noise, energy and interaction levels at #WSJFutureFest#
Is it Google's responsibility to ensure employees eat well in office cafes? Food director Michiel Bakker says "we're not the food police" but can be "architects" of healthy choices on menus at #WSJFutureFest# #FutureWork#
显示更多
A new approach to acoustic simulation from PKU could support future work in embodied intelligence! The research team led by Li Sheng and Wang Guoping from the School of Computer Science, Peking University, has won the Best Paper Award at the prestigious CASAXR 2026 (39th International Conference on Computer Animation, Social Agents, and Extended Reality) held in Geneva, Switzerland. Targeting key bottlenecks in traditional acoustic simulation—including numerical errors and poor adaptability to complex dynamic boundaries—the team proposed the novel SonicRadiation framework. This ghost-cell-free hybrid boundary-grid coupling method achieves simultaneous improvements in simulation accuracy and efficiency. It lays a solid physical foundation for high-fidelity acoustic simulation, embodied intelligence training, and accurate sound-physics coupling modeling for world models, empowering AI agents with authentic acoustic perception and interactive capabilities in complex dynamic scenarios. #PKUResearch# #EmbodiedAI# @CampusBiotech
显示更多
AI Coding 时代,好的编程习惯仍然重要 最近做一个 Agent benchmark,发现不能简单地用开发者视角来评估一个编程任务对 AI 的复杂度。 比如一个重构任务:把一个几千行的大文件,按功能拆成十多个小模块。 这个任务对开发者来说其实不算难,主要工作就是移动代码、整理 imports、编译验证,新手也能搞定。 所以想着用一个简单的任务来做一下 benchmark,结果却出乎意料。 Claude Code 判断这个任务比较大,尝试拆了一部分,提了个 PR 写了 Future work 打算分步来。 我自己的 Agent 是“硬上”,往完整拆分的方向推进了更多,但代价也很明显:Token 消耗是 Claude 的几十倍,后面大量时间都花在反复读文件、修编译错误、再读文件、再修错误上。 这让我意识到,人觉得简单的任务,对 Agent 不一定简单。 对人来说,这类重构很多时候就是“把这一段挪过去”。但对 Agent 来说,它要先分批读大文件,记住哪些函数和哪些测试有关,再生成一堆跨文件修改,最后通过编译错误一点点补洞。看起来像机械活,实际变成了一个高 Token、高状态管理成本的任务。 前一段时间看到有人说,AI Coding 时代,拆分模块这些编程原则没那么重要了,反正人也不看代码。现在看,我不太同意。模块边界清楚、文件粒度合适、依赖关系简单,不只是方便人读,也是在帮 Agent 降低任务复杂度。 从另一个角度看,现在 Agent 的读文件和改文件工具,对这种重构也不太顺手。 Coding Agent 改文件,主要还是文本替换。比如 Claude Code 常见的是 old_string / new_string 模式:先给出一段旧文本,再替换成新文本。Codex 常用的是 apply_patch:生成一个类似 git diff 的 patch,表达把旧的内容替换成新的。它们都适合小范围修改,但如果要删除一大段旧代码,或者把一批函数挪到别的文件,模型往往还是要先把原始内容读进上下文,再生成一大段替换或 diff。 所以我后来给 Agent 一个提示,让它先用脚本、sed、perl 这类工具把大文件粗拆开,直接把旧内容删掉,写到新文件中,然后再逐个慢慢修,它的完成度确实高了许多。Agent 默认不会这样做,主要是因为系统提示词里会强烈要求 Agent 用内置工具修改文件,而不是命令行工具。 再往前想一步,Coding Agent 可能还需要更高级的编辑工具。不是只给它一个“替换文本”的接口,而是先通过 parser、LSP 或 compiler 建立代码结构,让 Agent 可以像 IDE 一样做重构:移动函数,删除 impl block,整理 imports。不知道是否有朋友做这方面的尝试。 总的来说,即便是 AI Coding 时代,好的编程习惯还是有价值的。尽量在早期通过 harness engineering,把好的编程习惯变成 Agent 的默认工作方式,比后来再重构的成本要小很多。
显示更多
0
13
49
9
转发到社区
Automations can now run in the same thread, so Codex can pick up where it left off, with the original context intact. It can schedule future work and wake up automatically to continue long-term tasks, from landing open PRs to following up on tasks or staying on top of fast-moving conversations.
显示更多
0
7
415
13
转发到社区
Vietnamese Youth Called for Deeper Bilateral Youth Cooperation to Further Strengthen China-Vietnam Friendship From April 11 to 13, the "Staying True to Original Aspiration" study camp, part of the "Red Study Tour" for Vietnamese youth in China, was held in Guangzhou. A representative of the Ho Chi Minh Communist Youth Union of Vietnam called the visit to revolutionary historical and cultural sites "extremely interesting, rewarding, and meaningful". He noted that the tour deepened his understanding of the friendly history between China and Vietnam and offered valuable inspiration for his future work. He hoped that youth organizations of the two countries would expand cooperation in education, cultural exchanges, science and technology, digital transformation, green transition, and community volunteer services. @MFA_China @VNGovtPortal @MOFAVietNam @PressDept_MoFA @vietnamenglish
显示更多
Three days ago I left autoresearch tuning nanochat for ~2 days on depth=12 model. It found ~20 changes that improved the validation loss. I tested these changes yesterday and all of them were additive and transferred to larger (depth=24) models. Stacking up all of these changes, today I measured that the leaderboard's "Time to GPT-2" drops from 2.02 hours to 1.80 hours (~11% improvement), this will be the new leaderboard entry. So yes, these are real improvements and they make an actual difference. I am mildly surprised that my very first naive attempt already worked this well on top of what I thought was already a fairly manually well-tuned project. This is a first for me because I am very used to doing the iterative optimization of neural network training manually. You come up with ideas, you implement them, you check if they work (better validation loss), you come up with new ideas based on that, you read some papers for inspiration, etc etc. This is the bread and butter of what I do daily for 2 decades. Seeing the agent do this entire workflow end-to-end and all by itself as it worked through approx. 700 changes autonomously is wild. It really looked at the sequence of results of experiments and used that to plan the next ones. It's not novel, ground-breaking "research" (yet), but all the adjustments are "real", I didn't find them manually previously, and they stack up and actually improved nanochat. Among the bigger things e.g.: - It noticed an oversight that my parameterless QKnorm didn't have a scaler multiplier attached, so my attention was too diffuse. The agent found multipliers to sharpen it, pointing to future work. - It found that the Value Embeddings really like regularization and I wasn't applying any (oops). - It found that my banded attention was too conservative (i forgot to tune it). - It found that AdamW betas were all messed up. - It tuned the weight decay schedule. - It tuned the network initialization. This is on top of all the tuning I've already done over a good amount of time. The exact commit is here, from this "round 1" of autoresearch. I am going to kick off "round 2", and in parallel I am looking at how multiple agents can collaborate to unlock parallelism. All LLM frontier labs will do this. It's the final boss battle. It's a lot more complex at scale of course - you don't just have a single train. py file to tune. But doing it is "just engineering" and it's going to work. You spin up a swarm of agents, you have them collaborate to tune smaller models, you promote the most promising ideas to increasingly larger scales, and humans (optionally) contribute on the edges. And more generally, *any* metric you care about that is reasonably efficient to evaluate (or that has more efficient proxy metrics such as training a smaller network) can be autoresearched by an agent swarm. It's worth thinking about whether your problem falls into this bucket too.
显示更多
0
966
19.5K
2.1K
转发到社区
Collaborative robots ("cobots") are reshaping the future of work by augmenting human capabilities—not replacing them. Designed to safely work alongside people, cobots are transforming manufacturing today and arerapidly expanding into healthcare, logistics, agriculture, laboratories, construction, and retail. As AI, machine vision, and semantic reasoning continue to evolve, cobots will becomeincreasingly adaptive, autonomous, and interconnected. Their future depends not only on physical intelligence, but also onstandardized digital identities, interoperable data, and shared semantic understandingacross global ecosystems. In Web3, domain namespaces such as .COBOTS have the potential to serve as digital identity infrastructure for robotics ecosystems—supporting decentralized identities, machine-readable services, asset discovery, and trusted interactions between robots, organizations, developers, and AI agents. Web3 domains are increasingly being explored as a foundation for digital identity and decentralized applications. #Cobots# #CollaborativeRobots# #Robotics# #Web3# #DigitalIdentity# #AI# #Industry40# #Industry50# #HumanoidRobots# #SemanticWeb# #KnowledgeGraph# #Automation# #FutureOfWork#
显示更多
The next trillion-dollar industry won't just be AI. It will be AI Humanoids + Web3 + DigitalIdentity. Explore .humanoids: Here's why: 1/ AI has transformed software. The next transformation is physical. Humanoid robots are moving into manufacturing, warehouses, healthcare, logistics, retail, and eventually everyday life. Some long-term industry forecasts envisionthe humanoid robotics economy reaching themulti-trillion-dollar range over the coming decades. 2/ Intelligence alone isn't enough. Autonomous humanoids will need secure digital identities to interact with people, businesses, and other machines. Identity becomes infrastructure. 3/ They'll also need to:
• Verify who they are
• Own digital assets
• Build reputation
• Authenticate services
• Access decentralized networks
• Coordinate with other AI agents 4/ That's where Web3 can add value. Decentralized identity, ownership, programmable payments, and verifiable credentials can enable machine-to-machine interactions without depending on a single centralized authority. 5/ As this ecosystem grows, human-readabledigital identities become increasingly important. Owning a .humanoids digital identity today could be similar to securing premium internetreal estate before mass adoption—givingbuilders, brands, creators, and communities anearly presence in the emerging humanoid economy. 6/ AI gives humanoids intelligence. Web3 enables ownership and verifiable identity. Together, they could help support autonomousmachine economies. 7/ The future won't just be digital. It may walk beside us. Work alongside us. And interact with us every day. We're still early. Discover the future of .humanoids:
 What role do you think decentralized identity will play in the age of autonomous robots? 👇 Join the discussion. #Humanoids# #AI# #Web3# #Robotics##DigitalIdentity# #ArtificialIntelligence##MachineEconomy# #FutureOfWork##Automation# #Blockchain# #DePIN#
显示更多
AI is no longer a technology challenge, it's a leadership challenge. The Future of Professionals Report 2026: Actionable Insights for Corporate Leaders examines the growing gap between AI strategy and execution across legal, tax, compliance, and risk functions. It explores the pressures these teams face, the strategic paths they are taking, and the leadership actions needed to turn AI ambition into business impact. Explore the full report today: #ArtificialIntelligence# #FOP26# #FutureOfWork#
显示更多