Исследуйте самые популярные видео, подведённые итоги

Мгновенные сводки самых популярных материалов

YouTube TikTok Bilibili DouYin X Facebook Instagram KuaiShou
AI 實測「韭菜收割機」策略,教你如何避開散戶陷阱,年化報酬多賺 7%! | FinLab 財經實驗室

AI 實測「韭菜收割機」策略,教你如何避開散戶陷阱,年化報酬多賺 7%! | FinLab 財經實驗室

讓你的 AI 也懂投資:https://www.finlab.finance AI 實測「韭菜收割機」策略,教你如何避開散戶陷阱,年化報酬多賺 7%! 你是否總覺得一買就跌、一賣就漲?難道散戶真的是股市裡最準的「反指標」嗎?本集節目邀請 Finlab AI 大使 Claude,翻遍 900 筆資料庫,針對台股散戶行為進行深度量化分析 。我們不僅要證明「集保庫存」與「融資水位」的預測威力,更要手把手教你如何結合經典因子,打造出一台真正的「韭菜收割機」! 【本集精華】 破解 15 年前的研究:散戶現在還是一樣笨嗎? 集保庫存「變化量」vs「水位」:哪一個才是真指標? 融資使用率過高的恐怖真相:為什麼它是慢性毒藥? 實測 AB Test:加入「反韭菜過濾器」,績效竟然提升這麼多! 【時間戳記】 00:00 台灣散戶每年虧損 5000 億?今天來實測! 01:20 Finlab 資料庫大公開:130 個欄位抓出散戶 DNA 02:35 什麼是集保庫存?每週一次的台股「人口普查」 03:49 修正股價偏誤:為什麼不能直接看張數? 05:18 數據打臉!小型股散戶多反而比較會漲? 06:06 控制市值後真相大白:小型股的動量效應 08:46 關鍵修正:改用「變化量」測量,散戶慘變反指標! 11:14 視覺化圖表:散戶一衝進去,股票就完蛋 12:54 策略實測:反韭菜策略第一版 (扣除交易成本的挑戰) 15:06 二號因子:融資使用率是貪婪指標還是動量? 17:53 融資水位過高的真相:剩餘買盤枯竭的訊號 19:50 韭菜收割機合體!為什麼「季調倉」表現最穩? 21:00 終極大戲:經典因子 + 韭菜過濾器,年化報酬飆至 25%! 22:33 總結:AI 是工具,人腦才是真正的收割機 讓你的 AI 也懂投資:https://www.finlab.finance #台股 #散戶 #量化交易 #Finlab #反指標 #投資策略 #韭菜收割機 #股票分析 #程式交易 #AI理財

270 2026-06-01
[1hr Talk] Intro to Large Language Models

[1hr Talk] Intro to Large Language Models

This is a 1 hour general-audience introduction to Large Language Models: the core technical component behind systems like ChatGPT, Claude, and Bard. What they are, where they are headed, comparisons and analogies to present-day operating systems, and some of the security-related challenges of this new computing paradigm. As of November 2023 (this field moves fast!). Context: This video is based on the slides of a talk I gave recently at the AI Security Summit. The talk was not recorded but a lot of people came to me after and told me they liked it. Seeing as I had already put in one long weekend of work to make the slides, I decided to just tune them a bit, record this round 2 of the talk and upload it here on YouTube. Pardon the random background, that's my hotel room during the thanksgiving break. - Slides as PDF: https://drive.google.com/file/d/1pxx_ZI7O-Nwl7ZLNk5hI3WzAsTLwvNU7/view?usp=share_link (42MB) - Slides. as Keynote: https://drive.google.com/file/d/1FPUpFMiCkMRKPFjhi9MAhby68MHVqe8u/view?usp=share_link (140MB) Few things I wish I said (I'll add items here as they come up): - The dreams and hallucinations do not get fixed with finetuning. Finetuning just "directs" the dreams into "helpful assistant dreams". Always be careful with what LLMs tell you, especially if they are telling you something from memory alone. That said, similar to a human, if the LLM used browsing or retrieval and the answer made its way into the "working memory" of its context window, you can trust the LLM a bit more to process that information into the final answer. But TLDR right now, do not trust what LLMs say or do. For example, in the tools section, I'd always recommend double-checking the math/code the LLM did. - How does the LLM use a tool like the browser? It emits special words, e.g. |BROWSER|. When the code "above" that is inferencing the LLM detects these words it captures the output that follows, sends it off to a tool, comes back with the result and continues the generation. How does the LLM know to emit these special words? Finetuning datasets teach it how and when to browse, by example. And/or the instructions for tool use can also be automatically placed in the context window (in the “system message”). - You might also enjoy my 2015 blog post "Unreasonable Effectiveness of Recurrent Neural Networks". The way we obtain base models today is pretty much identical on a high level, except the RNN is swapped for a Transformer. http://karpathy.github.io/2015/05/21/rnn-effectiveness/ - What is in the run.c file? A bit more full-featured 1000-line version hre: https://github.com/karpathy/llama2.c/blob/master/run.c Chapters: Part 1: LLMs 00:00:00 Intro: Large Language Model (LLM) talk 00:00:20 LLM Inference 00:04:17 LLM Training 00:08:58 LLM dreams 00:11:22 How do they work? 00:14:14 Finetuning into an Assistant 00:17:52 Summary so far 00:21:05 Appendix: Comparisons, Labeling docs, RLHF, Synthetic data, Leaderboard Part 2: Future of LLMs 00:25:43 LLM Scaling Laws 00:27:43 Tool Use (Browser, Calculator, Interpreter, DALL-E) 00:33:32 Multimodality (Vision, Audio) 00:35:00 Thinking, System 1/2 00:38:02 Self-improvement, LLM AlphaGo 00:40:45 LLM Customization, GPTs store 00:42:15 LLM OS Part 3: LLM Security 00:45:43 LLM Security Intro 00:46:14 Jailbreaks 00:51:30 Prompt Injection 00:56:23 Data poisoning 00:58:37 LLM Security conclusions End 00:59:23 Outro Educational Use Licensing This video is freely available for educational and internal training purposes. Educators, students, schools, universities, nonprofit institutions, businesses, and individual learners may use this content freely for lessons, courses, internal training, and learning activities, provided they do not engage in commercial resale, redistribution, external commercial use, or modify content to misrepresent its intent.

350 2026-05-28
← Предыдущий Следующий →