[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -2,66 +2,146 @@
id: wiki-2026-0508-neuroplasticity-in-addiction
title: Neuroplasticity in Addiction
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-NPADD-001]
aliases: [Addiction Plasticity, Reward Learning Plasticity, Drug-Induced LTP]
duplicate_of: none
source_trust_level: A
confidence_score: 0.94
tags: [auto-reinforced, Neuroplasticity, addiction, synaptic-changes]
confidence_score: 0.9
verification_status: applied
tags: [neuroplasticity, addiction, dopamine, ltp, mesolimbic]
raw_sources: []
last_reinforced: 2026-04-20
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: python
framework: brian2-rl
---
# [[Neuroplasticity in Addiction|Neuroplasticity in Addiction]]
# Neuroplasticity in Addiction
## 📌 한 줄 통찰 (The Karpathy Summary)
> "학습 기계의 오작동: 새로운 것을 배우기 위해 존재하는 뇌의 유연성이 중독이라는 파괴적인 루틴을 영구적인 하드웨어 설비로 구축해버린 비극."
## 한 줄
> **"매 reward 의 hijack — 매 mesolimbic LTP 의 maladaptive learning"**. 매 VTA→NAc dopamine surge 의 AMPA-receptor insertion 의 trigger, 매 cue→drug association 의 over-consolidation. 매 2026 의 ketamine / psilocybin assisted therapy 의 reverse-plasticity 의 promising clinical evidence.
## 📖 구조화된 지식 (Synthesized Content)
중독에서의 신경가소성(Neuroplasticity in Addiction)은 중독성 물질이나 행위가 뇌의 구조적, 기능적 연결성을 기형적인 방향으로 재구성하는 과정을 설명합니다.
## 매 핵심
1. **시냅스 수준의 변화**:
* **LTP (Long-Term Potentiation)**: 보상 회로 내의 약물 관련 자극 시냅스가 비정상적으로 강화되어, 주변의 일상적 자극은 무시될 정도로 강력한 연결 구축.
* **수상돌기 변화**: 측좌핵(NAcc)의 뉴런 수상돌기 분지가 늘어나 약물 관련 단서(Cues)에 극도로 민감해짐.
2. **광범위한 네트워크 재편**:
* **Frontal-Limbic Imbalance**: 전전두엽(통제)과 변연계(충동) 사이의 평형이 깨져 충동 조절 능력이 영구적으로 감퇴.
3. **가소성을 이용한 치료**:
* 환경 변화, 운동, 인지 훈련 등을 통해 약물 회로를 '가지치기'하고 건강한 회로를 강화하는 '재배선(Rewiring)' 전략.
### 매 circuits
- **Mesolimbic (VTA→NAc)**: 매 reward prediction error → 매 reinforcement.
- **Mesocortical (VTA→mPFC)**: 매 craving, executive control 의 erode.
- **Amygdala→NAc**: 매 cue-conditioning, withdrawal-anxiety.
- **Hippocampus→NAc**: 매 contextual cues.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 중독으로 인한 뇌 손상은 영구적이라고 여겨졌으나, 최근 연구는 장기간의 금욕과 치료를 통해 손상된 가소성 기제(Neurogenesis 등)를 어느 정도 복구할 수 있음을 보여줌.
- **정책 변화(RL Update)**: 중독을 '학습 장애(Learning Disorder)'의 일종으로 재정의함에 따라, 단순히 막는 것이 아니라 새로운 건강한 보상 경험을 '과잉 학습(Overlearning)'시켜 중독 회로를 덮어쓰는(Overwriting) 전략이 정책 수준에서 권고됨.
### 매 plasticity mechanisms
- **AMPAR trafficking**: 매 GluA1 surface 의 increase → 매 NAc MSN excitability.
- **Silent synapses**: 매 NMDAR-only 의 cocaine 후 의 unsilencing.
- **Dendritic spines**: 매 stimulants → 매 spine density 의 increase. 매 opioids → 매 decrease.
- **Epigenetic** (ΔFosB, HDAC5): 매 long-term gene-expression 의 lock-in.
## 🔗 지식 연결 (Graph)
- **Related**: [[Neuroplasticity|Neuroplasticity]], Neurobiology of Reward, Habit Formation, Cognitive [[Behavior|Behavior]]al Therapy (CBT)
- **Modern Tech/Tools**: rTMS, Neurofeedback-based rewiring, Exercise-induced BDNF release.
---
### 매 응용
1. 매 cue-exposure therapy + reconsolidation blockade (propranolol, ketamine).
2. 매 TMS / DBS (NAc, sgACC) 의 craving reduction.
3. 매 contingency management + digital phenotyping.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
## 💻 패턴
**언제 이 지식을 쓰는가:**
- *(TODO)*
### Q-learning model fit (drug-bias parameter)
```python
import numpy as np
def q_learn_ll(choices, rewards, alpha=0.3, beta=5.0):
Q = np.zeros(2); ll = 0.0
for c, r in zip(choices, rewards):
p = np.exp(beta*Q) / np.exp(beta*Q).sum()
ll += np.log(p[c] + 1e-9)
Q[c] += alpha * (r - Q[c])
return ll
```
**언제 쓰면 안 되는가:**
- *(TODO)*
### Reconsolidation window detector
```python
from datetime import timedelta
def in_reconsolidation_window(cue_t, now_t, win_min=10, win_max=60):
dt = (now_t - cue_t).total_seconds() / 60
return win_min <= dt <= win_max
```
## 🧪 검증 상태 (Validation)
### Striatal MSN STDP (Brian2)
```python
from brian2 import *
G = NeuronGroup(100, 'dv/dt=(El-v)/tau:volt', threshold='v>-50*mV', reset='v=El')
S = Synapses(G, G,
'''w:1
dApre/dt=-Apre/tauPre:1 (event-driven)
dApost/dt=-Apost/tauPost:1 (event-driven)''',
on_pre='Apre+=dApre; w=clip(w+Apost,0,wmax)',
on_post='Apost+=dApost; w=clip(w+Apre,0,wmax)')
```
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### Cue-reactivity fMRI ROI extraction
```python
from nilearn import input_data
masker = input_data.NiftiMasker(mask_img='nac_left.nii.gz', standardize=True)
ts = masker.fit_transform('subject_task.nii.gz')
craving_corr = np.corrcoef(beta_drug_cue_per_subj, vas_craving)[0, 1]
```
## 🧬 중복 검사 (Duplicate Check)
### Digital-phenotyping relapse-risk score
```python
def relapse_risk(z):
# z: dict of z-scored features (gps_entropy, sleep_var, screen_night, hrv)
s = 0.4*z['gps_entropy'] + 0.3*z['sleep_var'] \
+ 0.2*z['screen_night'] - 0.1*z['hrv']
return 1 / (1 + np.exp(-s))
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### Ketamine plasticity-window dosing protocol stub
```python
from datetime import timedelta
class KetamineProtocol:
window_h = 24 # BDNF / mTOR peak
def schedule_therapy(self, infusion_t):
return infusion_t + timedelta(hours=2)
```
## 🕓 변경 이력 (Changelog)
### TMS dlPFC craving protocol
```python
def tms_session():
return dict(target='left_dlPFC', frequency_hz=10,
trains=20, pulses_per_train=50,
inter_train_s=20, intensity_pct_rmt=110)
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 매 결정 기준
| 상황 | Intervention |
|---|---|
| Acute craving | TMS dlPFC 10 Hz |
| Treatment-resistant | DBS NAc (case-by-case) |
| Comorbid depression | Ketamine + therapy |
| Stimulant-use disorder | Contingency management + counseling |
| Opioid-use disorder | Buprenorphine + therapy |
**기본값**: CBT + medication + digital tools — 매 multimodal 의 best evidence.
## 🔗 Graph
- 부모: [[Neuroplasticity]] · [[Addiction-Neuroscience]]
- 변형: [[Long-Term-Potentiation]] · [[Reward-Prediction-Error]]
- 응용: [[Cue-Exposure-Therapy]] · [[TMS-for-Craving]] · [[Psychedelic-Assisted-Therapy]]
- Adjacent: [[Mesolimbic-Pathway]] · [[Dopamine-System]] · [[Reconsolidation]]
## 🤖 LLM 활용
**언제**: 매 mechanism teaching, 매 protocol scaffold, 매 patient-education content.
**언제 X**: 매 clinical decision making — 매 licensed clinician 의 require.
## ❌ 안티패턴
- **Plasticity = bad**: 매 plasticity itself 의 healing 의 vehicle.
- **Single-receptor focus**: 매 D2-only blockade 의 outcomes 의 weak. 매 circuit-level 의 think.
- **Reconsolidation hype**: 매 window narrow, 매 boundary conditions 의 strict.
## 🧪 검증 / 중복
- Verified (Lüscher & Malenka 2011 *Neuron*; Kalivas & Volkow 2005).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — circuits + reversal-therapy patterns |