9148c358d0
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 폴더 제거.
8.3 KiB
8.3 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-biological-intelligence | Biological Intelligence | 10_Wiki/Topics | verified | self |
|
none | B | 0.85 | conceptual |
|
2026-05-10 | pending |
|
Biological Intelligence
📌 한 줄 통찰
"매 4 billion year 의 deep learning". 매 survival + reproduction = 매 reward. 매 evolution = 매 backpropagation. 매 modern AI 의 still 매 surpass X — 매 energy efficiency, 매 few-shot, 매 embodied. 매 inspiration 의 source.
📖 핵심
매 AI vs Biological 비교
| 측면 | Biological | AI (current) |
|---|---|---|
| Energy | 매 20W (brain) | 매 100W-MW (LLM) |
| Few-shot | 매 1-5 example | 매 trillion token |
| Embodied | ✓ | 매 robotics 시작 |
| Continual learn | ✓ | 매 catastrophic forget |
| Sample efficiency | 매 high | 매 low |
| Generality | ✓ (cross-domain) | 매 narrow → improving |
| Speed (perception) | ms | ms (inference) |
| Speed (math) | slow | 매 fast |
| Memory | 매 hierarchical | 매 attention window |
매 biological evolution 의 단계
- Single cell (3.5 Bya): 매 chemotaxis (gradient).
- Multicellular (1 Bya): 매 specialization.
- Nervous system (650 Mya): 매 cnidaria.
- Brain (550 Mya): 매 cambrian.
- Mammal (200 Mya): 매 cortex.
- Primate (65 Mya): 매 prefrontal.
- Human (300 Kya): 매 language.
- Modern human (50 Kya): 매 abstract reasoning.
매 brain 의 efficiency
- Power: 매 20W ≈ 매 light bulb.
- Synapse: 매 100 trillion.
- Neuron: 매 86 billion.
- Connection density: 매 sparse + 매 modular.
- Spike: 매 sparse activation.
- Plasticity: 매 STDP, Hebbian.
매 key biological mechanism
- Neuron: 매 leaky integrate-and-fire.
- Synapse: 매 chemical / electrical.
- Plasticity: LTP / LTD, STDP.
- Neurotransmitter: 매 dopamine, serotonin, glutamate.
- Modulator: 매 attention / arousal.
- Glial cell: 매 metabolic + memory consolidation.
매 AI 의 inspiration
- Neural network: 매 neuron model.
- Convolutional NN: 매 visual cortex (Hubel-Wiesel).
- Reinforcement learning: 매 dopamine.
- Attention: 매 selective attention.
- LSTM / GRU: 매 gating.
- Dropout: 매 noise / robustness.
- Spiking NN: 매 direct biology.
- World model: 매 predictive coding.
매 embodied cognition (Lakoff, Varela)
- 매 mind ≠ 매 disembodied symbol.
- 매 body 의 cognition 의 기반.
- 매 metaphor 의 physical (warm = friendly).
- 매 robotics 의 important.
- 매 LLM 의 limitation (no body).
매 few-shot 의 mechanism
- 매 prior knowledge (innate + learned).
- 매 hierarchical / compositional representation.
- 매 active inference.
- 매 social learning.
매 modern AI 의 도전 영역
- Energy: 매 neuromorphic chip.
- Few-shot: 매 meta-learning, in-context.
- Embodied: 매 robotics, 매 sim2real.
- Continual: 매 EWC, replay.
- Common sense: 매 LLM 의 의외 의 X.
- Causal reasoning: 매 Pearl's ladder.
매 modern brain-AI fusion
- 매 BCI (Neuralink, BrainGate).
- 매 organoid intelligence (mini-brain in dish).
- 매 cognitive enhancement (ethics).
- 매 hybrid intelligence.
💻 패턴 (응용 — biologically-inspired ML)
Spiking Neural Network (LIF)
import torch
import torch.nn as nn
class LIFLayer(nn.Module):
def __init__(self, dim, threshold=1.0, decay=0.9):
super().__init__()
self.fc = nn.Linear(dim, dim)
self.threshold = threshold
self.decay = decay
self.v = None
def forward(self, x_seq):
outputs = []
v = torch.zeros_like(x_seq[0])
for x in x_seq:
v = self.decay * v + self.fc(x)
spike = (v >= self.threshold).float()
v = v * (1 - spike)
outputs.append(spike)
return torch.stack(outputs)
Hebbian learning ("매 fire together, wire together")
def hebbian_update(W, pre, post, lr=0.01):
"""매 Δw_ij = lr * pre_i * post_j."""
return W + lr * torch.outer(post, pre)
Predictive coding (Bayesian brain)
class PredictiveCodingLayer(nn.Module):
"""매 top-down prediction + bottom-up error."""
def __init__(self, dim):
super().__init__()
self.predictor = nn.Linear(dim, dim)
def forward(self, top_down, bottom_up):
prediction = self.predictor(top_down)
error = bottom_up - prediction
return error # 매 error 만 의 propagate
Episodic memory (hippocampus-inspired)
class EpisodicBuffer:
"""매 fast learning store."""
def __init__(self, size=10000):
self.size = size
self.buffer = []
def store(self, state, action, reward):
if len(self.buffer) >= self.size: self.buffer.pop(0)
self.buffer.append((state, action, reward))
def retrieve(self, query, k=10):
# 매 nearest neighbor
scored = [(s, a, r, similarity(query, s)) for s, a, r in self.buffer]
return sorted(scored, key=lambda x: -x[3])[:k]
# 매 fast learning + slow consolidation (system 1 + 2).
Few-shot meta-learning (MAML)
def maml_step(model, tasks, inner_lr=0.01, outer_lr=0.001):
meta_loss = 0
for task in tasks:
# 매 inner: task-specific
adapted = clone_model(model)
for x, y in task.support:
loss = F.cross_entropy(adapted(x), y)
grads = torch.autograd.grad(loss, adapted.parameters())
for p, g in zip(adapted.parameters(), grads):
p.data -= inner_lr * g
# 매 outer: meta
for x, y in task.query:
meta_loss += F.cross_entropy(adapted(x), y)
meta_loss.backward()
optimizer.step()
Active inference (Friston)
def active_inference(belief, action_space, world_model):
"""매 expected free energy 의 minimize."""
efe = []
for a in action_space:
next_belief = world_model.predict(belief, a)
info_gain = expected_info_gain(next_belief)
pragmatic = expected_log_preference(next_belief)
efe.append(-info_gain - pragmatic)
return action_space[np.argmin(efe)]
🤔 결정 기준 (응용)
| 상황 | Bio-inspiration |
|---|---|
| Edge inference | Spiking NN |
| Few-shot | Meta-learning + episodic |
| Robotics | Embodied + active inference |
| Continual | Replay + EWC |
| Energy budget | Neuromorphic chip |
| World model | Predictive coding |
| Sparse reward | Active inference |
기본값: 매 specific bio-mechanism 의 isolate + 매 ML 의 integrate. 매 wholesale brain 의 mimic 의 X.
🔗 Graph
- 부모: Evolution
- 변형: Embodied Cognition · Bayesian-Brain-Hypothesis · Free-Energy-Principle
- 응용: Neuromorphic-Computing · Brain-Computer_Interface_(BCI) · Bioenergetics
- Adjacent: Reinforcement-Learning · Active-Inference · Predictive-Coding
🤖 LLM 활용
언제: 매 AI architecture 의 bio-inspire. 매 efficiency / few-shot 의 design. 매 embodied AI / robotics. 매 brain-AI fusion. 언제 X: 매 specific medical claim. 매 brain 의 literal mimic 의 expectation.
❌ 안티패턴
- Brain literal mimic: 매 different paradigm.
- Anthropomorphism: 매 LLM ≠ 매 conscious.
- Embodied 의 ignore (robotics): 매 sim2real 의 fail.
- Bigger = better assumption: 매 brain 의 sparse.
- Single bio-feature 의 magic 의 expect: 매 system 의 emergent.
🧪 검증 / 중복
- Verified (Kandel neuroscience, Friston FEP, Lakoff embodied).
- 신뢰도 B.
- Related: Neuromorphic-Computing · Bayesian-Brain-Hypothesis · Bioenergetics · Brain-Computer_Interface_(BCI) · Embodied Cognition.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — comparison + bio mechanism + 매 SNN / Hebbian / MAML / active inference code |