接手别人的项目,最头疼的就是看不懂代码。现在我可以直接把代码丢给AI,让它帮我解释:「这个组件的数据流是怎么走的?为什么要用useMemo?」
We have one horrible disjuncture, between layers 6 → 2. I have one more hypothesis: A little bit of fine-tuning on those two layers is all we really need. Fine-tuned RYS models dominate the Leaderboard. I suspect this junction is exactly what the fine-tuning fixes. And there’s a great reason to do this: this method does not use extra VRAM! For all these experiments, I duplicated layers via pointers; the layers are repeated without using more GPU memory. Of course, we do need more compute and more KV cache, but that’s a small price to pay for a verifiably better model. We can just ‘fix’ an actual copies of layers 2 and 6, and repeat layers 3-4-5 as virtual copies. If we fine-tune all layer, we turn virtual copies into real copies, and use up more VRAM.。关于这个话题,新收录的资料提供了深入分析
First FT: the day’s biggest stories,更多细节参见新收录的资料
更多精彩内容,关注钛媒体微信号(ID:taimeiti),或者下载钛媒体App,详情可参考新收录的资料
#5. Don’t always default to chat