"매 thinking 의 X — 매 data 의 compression + 매 prediction". 매 hidden pattern 의 statistical inference. 매 narrow ANI (chess, GPT) 의 dominate 가, 매 AGI 의 frontier 의 race. 매 Data + Compute + Algorithm 의 3 element 의 explosion.
📖 핵심
매 AI 의 종류
종류
Scope
예
ANI (Narrow)
매 single domain
Chess, GPT, AlphaFold
AGI (General)
매 human-level cross-domain
매 not yet (debated)
ASI (Super)
매 human 의 surpass
매 hypothetical
매 paradigm history
1. Symbolic AI (1950s-80s)
매 rule + 매 logic.
매 expert system (MYCIN, DENDRAL).
매 GOFAI (Good Old-Fashioned AI).
❄️ AI Winter (knowledge bottleneck).
2. Statistical / ML (1990s-2010s)
매 SVM, 매 Bayesian, 매 random forest.
매 feature engineering.
매 ImageNet 2012 → 매 deep learning.
3. Deep Learning (2012-)
매 NN with many layers.
매 GPU explosion.
매 representation learning.
4. Foundation Model / LLM (2018-)
매 BERT (2018), 매 GPT-3 (2020), 매 ChatGPT (2022).
매 transfer learning.
매 emergent capability.
5. Agentic / Multimodal (2024-)
매 tool use.
매 reasoning (o1 / R1).
매 multimodal (vision, audio).
매 robotics fusion.
매 핵심 paradigm
Supervised: 매 label.
Unsupervised: 매 structure.
Self-supervised: 매 pretext task (BERT, GPT, MAE).
Reinforcement: 매 reward.
Imitation: 매 expert demo.
Multi-task / meta-learning: 매 few-shot.
매 3 element (Sutton's "Bitter Lesson")
매 general method + 매 compute > 매 hand-crafted feature.
Data: 매 internet-scale.
Compute: 매 GPU / TPU exponential.
Algorithm: 매 transformer / RL.
→ "Most of the AI research has wasted on human knowledge insertion."
매 limitation (current)
Hallucination: 매 generation 의 fact 의 X.
Reasoning: 매 multi-step 의 weak (improving with o1).
Generalization: 매 OOD 의 fail.
Sample efficiency: 매 human 의 few-shot vs 매 LLM 의 trillion.
Embodiment: 매 robot 의 transfer 의 challenge.
Energy: 매 GW-scale.
매 neuro-symbolic
매 neural (pattern) + 매 symbolic (logic).
매 AlphaProof, 매 AlphaGeometry.
매 hallucination 의 reduce.
매 verifiable.
매 societal impact
Labor: 매 automation (cognitive).
Creativity: 매 augmentation.
Decision: 매 personalization + bias.
Power: 매 concentration.
Truth: 매 deepfake.
Education: 매 tutor.
Health: 매 diagnostic / drug.
매 milestone (selected)
1956: Dartmouth Conference (term "AI" coined).
1997: Deep Blue beats Kasparov.
2012: AlexNet ImageNet win.
2016: AlphaGo beats Lee Sedol.
2020: AlphaFold solves protein folding.
2022: ChatGPT launch.
2024: o1 reasoning, Sora video.
💻 패턴 (응용 — 빅 picture)
Stack overview
Application
├─ Agent (LangChain, LlamaIndex, AutoGen)
├─ Vector DB (Pinecone, Weaviate, Chroma)
└─ LLM API (OpenAI, Anthropic, Bedrock)
│
Foundation model
├─ Pretraining (compute-heavy)
├─ Fine-tuning (LoRA, RLHF)
└─ Inference (vLLM, TensorRT-LLM)
│
Hardware
├─ NVIDIA H100 / B200
├─ Google TPU
└─ Custom (Cerebras, Groq, AWS Trainium)
fromlangchain.agentsimportcreate_react_agentfromlangchain_community.toolsimportDuckDuckGoSearchRun,PythonREPLTooltools=[DuckDuckGoSearchRun(),PythonREPLTool()]agent=create_react_agent(llm,tools,prompt=react_prompt)result=agent.invoke({'input':'What is 2026 + 1, and search what happened then?'})
🤔 결정 기준
문제
Tool
Classification
scikit-learn / PyTorch
NLP understanding
BERT / RoBERTa
NLP generation
GPT / Claude / Llama
Vision
ViT / YOLO / CLIP
Speech
Whisper / Wav2Vec
RL
PPO / SAC / DreamerV3
Robotics
RL + sim2real
Math / proof
Lean + LLM
Drug
AlphaFold
RAG
LangChain + vectordb
Agent
LangGraph / OpenAI Agents SDK
기본값: LLM (general) + RAG (knowledge) + agent (tool). 매 specific = 매 specialized model.