Large Language Model(LLM) は、大量の text で train され、human language を理解し生成する AI model です。基本的には文脈から次の token(word/piece)を予測し、coherent な text を作ります。GPT、Claude、Gemini のような LLM は chatbot、assistant、content generation など modern AI application を支えています。
LLM とは
text
LLM = massive text で train された large neural network (transformer):
→ language pattern を学び、人間らしい text を理解/GENERATE する
→ fundamentally PREDICTS the next token given context
→ LARGE → billions of parameters, enormous text datasets
→ examples: GPT (OpenAI), Claude (Anthropic), Gemini (Google), Llama (Meta)
LLM ができること
text
✓ GENERATE text → write, summarize, translate, explain, brainstorm
✓ UNDERSTAND and answer → Q&A, analysis, extraction, classification
✓ CONVERSE → chatbots, assistants
✓ CODE → write, explain, debug code
✓ REASON (to a degree) → step-by-step problem solving, instruction following
→ natural-language PROMPTS で多様な language task を扱える
