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

与「SpeedTwin」相关的搜索结果

SpeedTwin 贴吧
一个关键词就是一个贴吧,路径全站唯一。
创建贴吧
用户
未找到
包含 SpeedTwin 的内容
TRIUMPH SPEED TWIN 900 & 1200 ICON EDITIONS プレス発表会の様子をまとめました🏍️ #triumph# #トライアンフ# #SpeedTwin# #スピードツイン# #IconEditions# #アイコンエディション# #NothingComesClose#
显示更多
0
8
569
22
转发到社区
ICON EDITIONSのトライアンフ筆記体ロゴもかっこいい! 1907年の登場から15年程度しか使われなかった筆記体ロゴが100年ぶりに正式に復活させた特別仕様車がICON EDITIONSなんです✨ #Triumph# #トライアンフ# #SpeedTwin# #スピードツイン# #IconEditions# #アイコンエディション# #NothingComesClose#
显示更多
0
6
777
26
转发到社区
【TRIUMPH SPEED TWIN 900 & 1200 ICON EDITIONS】 やっぱりトライアンフっておしゃれで素敵🫶🏻 SPEED TWIN 900が気になりすぎてます! 乗ってみたいけど、乗ったら絶対に欲しくなる…🥲 #Triumph# #トライアンフ# #SpeedTwin# #スピードツイン# #IconEditions# #アイコンエディション# #NothingComesClose#
显示更多
0
7
586
19
转发到社区
【TRIUMPH SPEED TWIN 900 & 1200 ICON EDITIONS】プレス発表会トークショーにトライアンフ モーターサイクルズ ジャパン大貫社長、バイキング小峠さんと登壇しました✨ #Triumph# #トライアンフ# #SpeedTwin# #スピードツイン# #IconEditions# #アイコンエディション# #NothingComesClose#
显示更多
0
11
1.2K
53
转发到社区
She’s never caught anyone speeding but she’s witnessed a few crashes😂
0
512
23.3K
600
转发到社区
It would be awesome if the time could stop speeding up, I wanna be in my 20s forever
MAN POOPS AND PEES IN COP CAR AFTER WARNING OFFICERS HE WAS SPEEDING HOME TO USE THE BATHROOM
0
37
788
42
转发到社区
The man who raised a bird since it hatched from the egg decided to test its loyalty by releasing it while speeding away on a boat.
0
1.8K
63K
2.2K
转发到社区
I have also heard some of this independently, and believe the following to be true. GPT-6 is the next release from OpenAI. It's their true answer to Mythos, and it will arrive much sooner than people expect. Model release cadence has been speeding up for a while now. It's possible that GPT-6 even arrives within the next four weeks. When I say 'arrive', however, it may not mean a general release, because if the last couple of months are any indication, GPT-6 will almost certainly be held back by the government, at least initially. It's a new, much larger pretrain as leo says. Mythos changed everything. Everyone is going big. Including Elon who has a 10T Grok in training. Both OpenAI and Anthropic see capabilities increasing rapidly, with advancement continuing on a new trajectory over the rest of this year and beyond. Both labs are very confident in what they have internally and see nothing above us but air. No ceiling.
显示更多
0
44
829
48
转发到社区
“Loop engineering” is a hot buzzphrase after mentions of it by Boris Cherny (Claude Code’s creator) and Peter Steinberger (OpenClaw's creator) went viral on social media. Loops are now a key part of how we get AI agents to iterate at length to build software. In this letter, I’d like to share my 3 key loops, shown in the image below, for building 0-to-1 products. These loops guide not just how I build software, but also how I decide what software to build. Agentic coding loop: Given a product specification and optionally a set of evals (that is, a dataset against which to measure performance), we can have an AI agent write code, test its work, and keep iterating until the code is bug-free and meets its specification. This idea of closing the loop took off around the end of last year, and it has been a game changer in enabling coding agents to work longer productively without human intervention. For example, over the weekend, I was building an app for my daughter to practice typing, and my coding agent could easily work for around an hour, using a web browser to check what it had built multiple times before getting back to me, without needing my intervention. The engineering loop executes quickly. Every few minutes, the coding agent might build and test a new version of the software. I hear frequently from developers who are finding new ways to engineer more effective engineering loops. This is an active area of invention! Developer feedback loop: In this loop, a developer examines the current product and steers the coding agent to improve it. Last year, a lot of developers (including me) were acting as the QA (quality assurance) function for our coding agents, manually finding bugs and then asking the agent to fix them. But with coding agents much more able to test their own code, the amount of time we need to spend on this function has decreased significantly. This allows us to make higher-level product decisions, such as what key features to offer, where the UI needs improvement, and so on. The developer-feedback loop operates over time intervals between tens of minutes and hours — that's how frequently a developer might review a product and give feedback. In the case of the typing app, I changed my mind a few times about the visual design, what cat costumes she can unlock as she learns (she loves cats), and the user flow for a grown-up to log in and steer the child's learning experience. When a developer has a clear vision for what to build, it is still a lot of work to translate that vision into a specification for a coding agent to implement. Further, after the developer has seen an implementation, they might update (or perhaps clarify) the spec to steer it toward what they want. If you find that the system repeatedly runs into certain problems, building a set of evals for the agent becomes useful. AI-native teams are increasingly using AI to help shape product direction, for example, automating the gathering and analysis of usage data, summarizing written and verbal customer feedback, or carrying out competitive analysis. However, for pretty much all the products I’m involved in, I see humans as having a significant context advantage over current AI systems — we know a lot more than the AI system about the users and the context the product has to operate in — and thus humans play a critical role. Many people describe this human contribution as “taste,” but I prefer to think of it as humans having a context advantage, since that gives us a clearer path to helping AI systems get better. This also speaks to why this step can’t be automated: So long as the human knows something the AI does not, human-in-the-loop is needed to to inject that knowledge into the system. External feedback loop: This includes a wide range of tactics like asking a few friends for feedback, launching to alpha testers, or putting the code into production with A/B testing. These tactics are usually slow, rarely taking less than hours and sometimes taking days or even weeks. This data informs the developer vision, which in turn continues to drive the detailed product spec, which in turn drives the coding agent. With coding agents speeding up software development, more engineers are starting to play a partial product management role. For many engineers who are growing into this role, the hardest part is shaping the product vision and striking a balance between building (bridging the gap between vision and spec) and getting user feedback to evolve the vision. It is important to do both! I will write more about how to do this in future posts, but for now, I find it encouraging that engineers are playing an expanded role (just as product managers and designers now do more engineering). [Original text: The Batch]
显示更多
0
132
3.2K
597
转发到社区