Posts

Showing posts with the label ml

[8 September 2025] Interesting Things I Learnt This Week

Image
 1. Multi-Token Prediction Reshapes LLM Training Paradigms - This research proposes that training large language models to predict multiple future tokens simultaneously, rather than just the next one, improves sample efficiency. The approach involves the model predicting the next 'n' tokens at each position in the training data using separate output heads on a shared model base. When used as an auxiliary task, multi-token prediction enhances performance in downstream tasks for both code and natural language models without increasing training time. The benefits are more significant with larger models and persist across multiple training epochs. Notably, this method excels in generative tasks like coding, where a 13B parameter model outperforms next-token models by solving 12% more problems on HumanEval and 17% more on MBPP. Additionally, it aids in developing induction heads and algorithmic reasoning on small tasks, and offers up to 3x faster inference speeds with 4-token predi...

[29th June 2025] Interesting Things I Learnt This Week

Image
1.  The Illusion of Thinking  - A recent paper from Apple's Machine Learning Research team challenges the idea that Large Reasoning Models (LRMs) can truly "think." The researchers argue that current methods for evaluating these models, which often use standard math and coding problems, are flawed due to potential data contamination and a focus on final answers rather than the reasoning process. Using controllable puzzles to test the models, the study found that even the most advanced LRMs experience a complete collapse in accuracy when the problem's complexity passes a certain point. Counterintuitively, as problems became more difficult, the models' "thinking" effort decreased, suggesting they "give up" rather than reason more deeply. The research identifies a significant gap between mimicking thought-like patterns and genuine, scalable reasoning, questioning the true capabilities of current AI.   My Take : Thinking is a complex p...

[3rd November 2024] Interesting Things I Learnt This Week

Image
1. Transforming CSV Files into Graphs with LLMs -  This is a step by step guide including code to transform csv files into graphs. There are prompts, python code and samples provided in it.  My Take : This is an excellent approach to streamlining data cleaning, a task that often consumes a significant portion of a data engineer's time. By leveraging the power of LLMs, we can potentially reduce this effort significantly. However, it's important to note that not all LLMs are equally effective for this purpose. Fine-tuning LLMs specifically for data cleaning tasks could further enhance their capabilities. I'm eager to learn more about this promising technique and its potential applications. Do let me know if have something interesting to share.   2. SOFA Start Often F*** Achievements - The SOFA principle advocates for starting numerous projects and finishing few. This approach prioritizes gaining diverse experiences and skills over completion. By frequently initiating new ...

[15th September 2024] Interesting Things I Learnt This Week

Image
 1. Our Memories Are Stored in Triplicate - This is an article about how the brain stores memories. It discusses what part of the brain is involved in memory storage and how different types of neurons are involved. The article also discusses how memories can change over time. Some important points are that memories are stored in multiple copies and that different copies are used for different purposes. Also, early-born neurons are involved in long-term memory and late-born neurons are involved in short-term memory. My Take : The research on the brain is fascinating, as it delves into the least understood part of our body. It reminded me of the 3-2-1 backup rule for data, emphasizing the importance of preserving memories. The most intriguing aspect is how memories can evolve over time, a phenomenon we all experience to some degree, particularly when reflecting on past experiences. 2. The Illustrated AlphaFold - This is an article about how AlphaFold3 works. It discusses the goals ...