Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.
- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
"매 인간의 cognitive task (perception, reasoning, language, decision) 을 매 machine 으로 perform — 매 narrow 에서 broad 까지 spectrum". 1956 Dartmouth Workshop 의 term coining 부터 매 symbolic AI winter, statistical ML 부흥, 매 2012 deep learning revolution, 매 2017 Transformer, 매 2022 ChatGPT, 매 2024-2026 multimodal foundation models + agentic systems 까지 evolutionary arc. 2026 현재 매 "AI" 매 거의 deep learning 의 synonym, 매 LLM-based agents 가 cutting edge.
매 핵심
매 정의 spectrum
Narrow AI (ANI): 매 specific task — chess, image classify, speech recog, code complete. 매 모든 deployed AI.
Artificial General Intelligence (AGI): 매 human-level across-domain. 매 현재 unresolved — 매 GPT-5 / Claude Opus 4.7 매 partially AGI 로 보는 view 도 있음.
Superintelligence (ASI): 매 모든 domain 에서 human 초과. Hypothetical.
매 paradigm history
Symbolic / GOFAI (1950-1980s): rule-based, expert systems. 매 brittle.
Statistical ML (1990-2010s): SVM, Random Forest, HMM. 매 feature engineering 매 무거움.
Deep Learning (2012-): CNN (ImageNet), RNN, Transformer (2017). 매 representation learning.
Foundation Models (2020-): GPT-3, BERT — 매 pretrain massive, transfer.
Agentic AI (2024-): tool-use, multi-step reasoning, autonomous task execution.
매 capability axes (2026)
Language: GPT-5, Claude Opus 4.7, Gemini 3 — 매 PhD-level on most academic benchmark.
Vision: GPT-5 Vision, Claude 4 Vision, native multimodal.
┌──────────────────────────────────────┐
│ Application (chat UI, IDE plugin) │
├──────────────────────────────────────┤
│ Agent layer (tool use, planning) │ ← Claude Code, LangGraph, CrewAI
├──────────────────────────────────────┤
│ Foundation Model API (LLM, VLM) │ ← Anthropic, OpenAI, Google
├──────────────────────────────────────┤
│ Inference runtime (vLLM, TGI, MLX) │
├──────────────────────────────────────┤
│ Hardware (H100, B200, MI355X, TPU) │
└──────────────────────────────────────┘
2. 단순 Hello-AI (Anthropic SDK, 2026)
fromanthropicimportAnthropicclient=Anthropic()resp=client.messages.create(model="claude-opus-4-7",max_tokens=1024,system="You are a concise tutor.",messages=[{"role":"user","content":"Explain backprop in 3 sentences."}],)print(resp.content[0].text)
fromanthropicimportAnthropicclient=Anthropic()tools=[{"name":"search_web","description":"Search the web for a query.","input_schema":{"type":"object","properties":{"q":{"type":"string"}},"required":["q"],},}]defrun_agent(user_msg:str):msgs=[{"role":"user","content":user_msg}]whileTrue:resp=client.messages.create(model="claude-opus-4-7",max_tokens=2048,tools=tools,messages=msgs,)ifresp.stop_reason=="end_turn":returnresp.content[0].text# tool_usetool_blocks=[bforbinresp.contentifb.type=="tool_use"]msgs.append({"role":"assistant","content":resp.content})results=[]fortbintool_blocks:out=dispatch(tb.name,tb.input)results.append({"type":"tool_result","tool_use_id":tb.id,"content":out})msgs.append({"role":"user","content":results})
6. Reinforcement Learning (PPO sketch)
# PPO core update — keeps policy close to old policyimporttorchdefppo_loss(logp_new,logp_old,adv,clip=0.2):ratio=torch.exp(logp_new-logp_old)s1=ratio*advs2=torch.clamp(ratio,1-clip,1+clip)*advreturn-torch.min(s1,s2).mean()
언제: 매 fuzzy / unstructured input (text, image, voice) 처리, 매 generation, 매 reasoning chain. 매 modern stack 의 default starting point.
언제 X: 매 deterministic rule-based system (compiler, regex parse) 매 LLM 사용 매 over-kill / wrong tool. 매 매 explainability requirement strict 한 domain (medical diagnosis legal binding) 매 careful.
❌ 안티패턴
AI = ML 동일시: 매 ML 매 AI subset, 매 symbolic / search / planning 도 AI.
무조건 deep learning: 매 small structured data 매 GBM 가 더 빠르고 정확.
Hallucination 무시: 매 LLM output 매 fact 가정 — 매 grounding (RAG, tool use, citation) 필수.
Fine-tune 먼저 reaching: 매 prompting / RAG 로 충분한 경우 매 절대 다수.
Hype-vs-capability gap 무시: 매 demo 매 cherry-pick — 매 production 에서 매 edge case 매 발견.