Welcome to DaiYi AGI
About This Site DaiYi AGI is my personal AI learning notebook and knowledge management system. Here, I document my learn...
About This Site DaiYi AGI is my personal AI learning notebook and knowledge management system. Here, I document my learn...
The Scaling Race Cools Down 2024 saw the industry shift from "bigger is better" to "smarter training." Smaller models wi...
The ReAct Pattern ReAct interleaves Reasoning and Acting, letting the Agent alternate between thinking and executing. Im...
What is Transformer Transformer was proposed by Google in 2017 and completely revolutionized NLP. It is based entirely o...
Intuitive Understanding Attention mimics human attention — when we look at a painting, we don't focus equally on every p...
Project Structure We'll implement an EncoderDecoder Transformer including Embedding, Positional Encoding, MultiHead Atte...
RAG Architecture Overview RAG combines retrieval and generation: store documents in a vector database, retrieve relevant...
AutoGPT Decomposes tasks into subgoals, calling LLMs iteratively. High autonomy but prone to loops. MetaGPT Borrows soft...
Optimists vs Skeptics OpenAI's Sam Altman believes AGI could arrive within 510 years. Yann LeCun argues we're much furth...
Overview Following Andrej Karpathy's nanoGPT, we build a small GPT that can generate text. Model Architecture python cla...
Basic Techniques ZeroShot Ask directly without examples. FewShot Provide 25 examples for the model to learn patterns. Ch...
Pinecone Fully managed vector database, zero operational burden. Ideal for rapid prototyping. python import pinecone pin...
RAG Development Timeline From Lewis et al.'s original RAG proposal in 2020 to becoming the standard enterprise LLM archi...