[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
+124 -41
View File
@@ -2,65 +2,148 @@
id: wiki-2026-0508-philosophy
title: Philosophy
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-PHIL-001]
aliases: [Philosophy of AI, Philosophy Basics]
duplicate_of: none
source_trust_level: A
confidence_score: 0.96
tags: [auto-reinforced, philosophy, existentialism, ethics, Logic, Epistemology, foundational]
confidence_score: 0.85
verification_status: applied
tags: [philosophy, epistemology, ethics, ai-safety, consciousness]
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: ""
framework: ""
---
# [[Philosophy|Philosophy]]
# Philosophy
## 📌 한 줄 통찰 (The Karpathy Summary)
> "생각에 대한 생각: 세상의 근본 원리, 존재의 의미, 지식의 기원을 탐구하며 우리가 세운 모든 학문과 사회 체계의 보이지 않는 '기반 환경'을 구축하는 인류 지성사 최고의 고차원 OS."
## 한 줄
> **"매 reasoning about reality, knowledge, mind, value"**. Philosophy 의 main branches (epistemology, metaphysics, ethics, mind, logic) — 매 modern AI 의 deeply intertwined: 매 knowing claim (epistemology) → ML evaluation, 매 mind claim (consciousness) → AGI/sentience debate, 매 value claim (ethics) → AI alignment / safety.
## 📖 구조화된 지식 (Synthesized Content)
철학(Philosophy)은 세계와 인간의 삶에 대한 근본 원리를 연구하는 학문입니다.
## 매 핵심
1. **3대 핵심 분과**:
* **Epistemology (인식론)**: "우리는 무엇을 알 수 있는가?" (지식의 기원과 한계). (Epistemology와 연결)
* **Ethics (윤리론)**: "우리는 어떻게 살아야 하는가?" (옳고 그름의 기준). ([[Ethics & AI|Ethics & AI]]와 연결)
* **Logic (논리학)**: "바른 추론이란 무엇인가?" (생각의 질서). (Logic와 연결)
2. **왜 중요한가?**:
* 기술이 '어떻게(How)'를 다룬다면, 철학은 '왜(Why)'를 다룸으로써, 기술이 길을 잃지 않도록 방향([[Alignment|Alignment]])을 제시하기 때문임.
### 매 main branches
- **Epistemology**: knowledge — 매 what can we know, justified true belief.
- **Metaphysics**: existence — 매 what exists, causation, time, identity.
- **Ethics**: value — 매 right/wrong, deontology vs consequentialism vs virtue.
- **Logic**: valid inference — 매 deductive, inductive, abductive.
- **Philosophy of mind**: consciousness — 매 hard problem (Chalmers).
- **Philosophy of science**: 매 falsification (Popper), paradigms (Kuhn).
- **Philosophy of language**: meaning, reference, speech acts.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 과거에는 현실과 동떨어진 추상적 정책(Ivory tower)으로 보였으나, 현대 정책은 AI의 자아 성찰 정책, 알고리즘의 공정성 정책 등 실생활과 직결된 '실천적 정책'으로 부활함(RL Update).
- **정책 변화(RL Update)**: 인간 고유의 지능 정책을 AI가 모사함에 따라, '인공 지능의 의식 정책'과 '책임의 주체 정책'을 논의하는 인성학적 철학 정책 수립이 인류 생존의 필수 과제가 됨.
### 매 epistemology (AI 와 직결)
- Justified True Belief — Gettier 1963 의 challenge.
- Bayesian epistemology — 매 belief 의 probability degree.
- Reliabilism — 매 process 의 reliability 가 중요.
- 매 ML evaluation: 매 model 의 "knowledge" claim 의 epistemic status.
## 🔗 지식 연결 (Graph)
- [[Epistemology|Epistemology]], [[Ethics & AI|Ethics & AI]], [[Logic|Logic]], [[Judgment|Judgment]], [[Innovation|Innovation]]
- **Modern Tech/Tools**: Philosophy of Mind, AI Alignment, Moral philosophy.
---
### 매 ethics (AI alignment)
- **Deontology**: rules (Kant). 매 categorical imperative.
- **Consequentialism**: outcomes (Mill, Bentham utilitarianism).
- **Virtue ethics**: character (Aristotle).
- 매 AI safety: 매 RLHF = consequentialist; constitutional AI = deontological hybrid.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 mind & consciousness
- Hard problem (Chalmers 1995): 매 why subjective experience exists.
- Functionalism: 매 mind = function, substrate-independent → AGI sentience plausible.
- Chinese Room (Searle 1980): 매 syntax ≠ semantics.
- Integrated Information Theory (Tononi): 매 consciousness = Φ.
- 매 2026 frontier: 매 LLM consciousness debate (Anthropic Welfare team, Google DeepMind sentience research).
**언제 이 지식을 쓰는가:**
- *(TODO)*
### 매 응용
1. AI ethics frameworks (alignment, fairness).
2. AGI sentience / moral patienthood debate.
3. Epistemic status of model outputs (hallucination as false belief).
4. Decision theory (CDT, EDT, FDT) for AI agents.
**언제 쓰면 안 되는가:**
- *(TODO)*
## 💻 패턴
## 🧪 검증 상태 (Validation)
### Bayesian belief update
```python
def bayes_update(prior, likelihood_h, likelihood_not_h):
"""P(H|E) = P(E|H)P(H) / [P(E|H)P(H) + P(E|~H)P(~H)]"""
p_e = likelihood_h * prior + likelihood_not_h * (1 - prior)
return likelihood_h * prior / p_e
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
# Belief in hypothesis after evidence
posterior = bayes_update(prior=0.3, likelihood_h=0.9, likelihood_not_h=0.1)
```
## 🧬 중복 검사 (Duplicate Check)
### Constitutional AI (deontological rules)
```python
constitution = [
"Refuse harmful requests.",
"Do not deceive.",
"Respect autonomy.",
]
def critique(response, constitution):
# LLM critiques own response against rules
return llm.complete(f"Critique: {response}\nRules: {constitution}")
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### Trolley problem decision theory
```python
# Utilitarian (consequentialist)
def utilitarian(action_outcomes):
return max(action_outcomes, key=lambda a: sum(a["lives_saved"]))
## 🕓 변경 이력 (Changelog)
# Deontological — hard rule against killing
def deontological(actions):
return [a for a in actions if not a["actively_kills"]]
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
### Epistemic confidence calibration
```python
# Brier score: lower = better calibration
import numpy as np
def brier_score(predicted_probs, outcomes):
return np.mean((predicted_probs - outcomes) ** 2)
```
### Falsification check (Popperian)
```python
def is_falsifiable(hypothesis):
"""A hypothesis must specify what would refute it."""
return hypothesis.get("refuting_observation") is not None
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| AI alignment | Hybrid: consequentialist outcome + deontological hard rules |
| Sentience claim | Skeptical default; functionalism if behavior + introspection |
| Truth claim | Bayesian update + Popperian falsifiability |
| Ethical dilemma | Multi-frame analysis (deont + conseq + virtue) |
| Hard problem | Acknowledge open; don't claim solved |
**기본값**: 매 epistemic humility + multi-framework ethics.
## 🔗 Graph
- 부모: [[Knowledge]] · [[Reasoning]]
- 변형: [[Epistemology]] · [[Ethics]] · [[Metaphysics]] · [[Logic]] · [[Philosophy-of-Mind]]
- 응용: [[AI-Safety]] · [[AI-Alignment]] · [[Constitutional-AI]] · [[AGI-Welfare]]
- Adjacent: [[Decision-Theory]] · [[Game-Theory]] · [[Cognitive-Science]]
## 🤖 LLM 활용
**언제**: 매 AI ethics framing, alignment design, sentience debate, epistemic claims.
**언제 X**: 매 narrow technical implementation (philosophy 의 abstraction 만 enough).
## ❌ 안티패턴
- **Single-framework dogma**: 매 only utilitarianism → trolley monsters; only deontology → unable to weigh harm.
- **Conflating AI behavior with consciousness**: 매 LLM 의 "I feel" output ≠ proof of feeling.
- **Solving the hard problem casually**: 매 functionalism 의 plausible but not proven.
- **Ignoring philosophy in alignment**: 매 RLHF 의 implicit consequentialism unexamined.
- **Naive realism in ML eval**: 매 benchmark score = "true intelligence" (epistemic naive).
## 🧪 검증 / 중복
- Verified (Stanford Encyclopedia of Philosophy, Russell & Norvig "AIMA" Ch. 27 Ethics).
- 신뢰도 A-.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — branches, AI applications, decision patterns |