Files
2nd/10_Wiki/Topics/AI_and_ML/Work-Displacement.md
T
Antigravity Agent f8b21af4be Wiki cleanup: error-doc removal, dedup merge, link normalization
10_Wiki/Topics 대규모 정리:
- 오류 캡처/미완성 stub 문서 227개 제거
- 교차폴더 중복 43클러스터 병합 (63파일 → redirect)
- 링크명 정규화: 깨진 링크 수정·redirect 직결·개념 매핑 ~2,400건
- 카테고리 MOC 6개 신규 생성
- Graph 섹션 미해결 related-keyword 링크 10,058건 제거

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-20 23:52:15 +09:00

8.0 KiB
Raw Blame History

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-work-displacement Work Displacement (AI 노동 대체) 10_Wiki/Topics verified self
Job Displacement
AI Automation
Labor Displacement
Technological Unemployment
none A 0.85 applied
labor
economics
ai-impact
automation
policy
2026-05-10 pending
language framework
Python/R pandas/statsmodels

Work Displacement (AI 노동 대체)

매 한 줄

"매 AI/automation 이 매 specific tasks/occupations 의 demand 를 매 reduce/eliminate — 매 net unemployment 와 매 different concept (재배치 가능성 포함)". Frey & Osborne 2013 47% 추정 부터 매 IMF 2024 (40% global jobs 영향), Goldman Sachs 2023 (300M FTE), MIT Acemoglu 2024 의 매 conservative estimate (5-10% GDP 효과 / 10년) 까지 매 다양한 추정. 2026 현재 매 white-collar (legal, code, design, customer support) 가 매 first-wave 에 있고, 매 재훈련 / wage 압력 / inequality 가 매 policy 핵심 의제.

매 핵심

매 displacement vs replacement vs augmentation

  • Displacement: task 자체 매 사라짐 (e.g., elevator operator).
  • Replacement (substitution): human 매 machine 으로 대체.
  • Augmentation: human + AI 매 productive — 매 어떤 worker 매 더 valuable.
  • Compensation effects: 매 displaced worker 매 new task / lower-cost product / new sector 로 흡수 (역사적 trend).

매 task 단위 분석 (Acemoglu-Restrepo framework)

  • 매 occupation = bundle of tasks. AI 매 일부 task 만 자동화 — 매 occupation 자체 disappear 보다 매 task composition 변경 보통.
  • 매 "exposure" ≠ "automation" — 매 GPT 가 task 처리 가능 means exposed, but adoption / cost / regulation 매 lag.

매 affected categories (2026 evidence)

  • Highly exposed: paralegal, copywriter, junior translator, basic illustrator, tier-1 customer support, junior dev (boilerplate code), tax prep.
  • Augmented: senior eng, doctor (radiology + AI co-read), researcher, analyst, designer.
  • Insulated: hands-on physical (plumber, surgeon), high-touch interpersonal (therapy, teaching young kids), strategic / political.

매 empirical findings (2024-2026)

  • Brynjolfsson et al. 2023: customer support — 매 14% productivity, 매 novice gains > expert.
  • MIT writing study 2023: 37% time reduction, quality up.
  • Goldman 2024: 매 entry-level coder demand 매 5-15% 감소 signal (US BLS data).
  • WEF 2025 Future of Jobs: 매 net 7M jobs decline 2025-2030, 매 AI-adjacent role 매 10M 증가.

매 policy responses

  1. UBI / negative income tax — 매 still pilot stage.
  2. Reskilling / displacement insurance (Singapore SkillsFuture, EU Just Transition).
  3. Working time reduction (4-day week trials).
  4. AI-specific tax (Bill Gates proposal).
  5. Sectoral protection (e.g., truckers vs autonomous trucks).

매 응용

  1. Workforce planning (어느 role 매 AI exposure 높은지).
  2. Curriculum design (대학, bootcamp).
  3. Public policy modeling.
  4. Corporate L&D investment 결정.
  5. Personal career strategy.

💻 패턴

1. O*NET task exposure score (Python)

# Compute occupation-level AI exposure from task descriptions
import pandas as pd
from sentence_transformers import SentenceTransformer
import numpy as np

embedder = SentenceTransformer("BAAI/bge-large-en-v1.5")

# AI capability descriptors (cf. Eloundou et al. 2023 GPTs are GPTs)
AI_CAPS = [
    "summarize a long document",
    "draft an email or report",
    "write or debug code",
    "extract structured data from text",
    "answer factual questions",
    "translate between languages",
    "generate an image from a description",
]

tasks = pd.read_csv("onet_tasks.csv")  # task_id, occupation, task_text
ai_emb = embedder.encode(AI_CAPS, normalize_embeddings=True)

def exposure(task_text: str) -> float:
    t = embedder.encode(task_text, normalize_embeddings=True)
    return float(np.max(t @ ai_emb.T))

tasks["exposure"] = tasks.task_text.apply(exposure)
occ = tasks.groupby("occupation").exposure.mean().sort_values(ascending=False)
print(occ.head(20))

2. Wage impact regression

import statsmodels.formula.api as smf
import pandas as pd

# Cross-sectional wage / employment by occupation × AI exposure
df = pd.read_csv("bls_acs_2025.csv")  # occ, exposure, wage_change_pct, employment_change_pct
m = smf.ols("wage_change_pct ~ exposure + edu_years + female_share + remote_share", data=df).fit()
print(m.summary())

3. Difference-in-differences (ChatGPT shock 2022→2025)

# Treatment: high-exposure occupations, post: 2023+
import statsmodels.formula.api as smf

panel["post"] = (panel.year >= 2023).astype(int)
panel["treat"] = (panel.exposure > panel.exposure.median()).astype(int)
panel["did"] = panel.post * panel.treat

m = smf.ols(
    "log_employment ~ post + treat + did + C(occ) + C(year)",
    data=panel,
).fit(cov_type="cluster", cov_kwds={"groups": panel.occ})
print(m.params["did"], m.pvalues["did"])

4. Reskilling pathway recommender

# For displaced worker, suggest adjacent occupations with low exposure
def recommend(current_occ: str, df: pd.DataFrame, top_k=5):
    cur_skills = df[df.occ == current_occ].iloc[0].skill_vector  # pre-computed
    candidates = df[df.exposure < df.exposure.quantile(0.3)]
    candidates = candidates.assign(
        sim=candidates.skill_vector.apply(lambda v: float(v @ cur_skills)),
    )
    return candidates.nlargest(top_k, "sim")[["occ", "wage_median", "sim", "exposure"]]

5. Macro impact simulation (production-function)

# Cobb-Douglas with AI as capital-like factor
import numpy as np
def gdp(L, K, AI, alpha=0.3, beta=0.5, gamma=0.2, A=1.0):
    return A * L**alpha * K**beta * AI**gamma

# Scenario: AI capital grows 30%/yr, labor productivity 비례
years = np.arange(2026, 2036)
L0, K0, AI0 = 100, 100, 10
gdp_path = [gdp(L0 * 1.005**i, K0 * 1.02**i, AI0 * 1.30**i) for i in range(len(years))]
print({y: round(v, 1) for y, v in zip(years, gdp_path)})

매 결정 기준

상황 Approach
Workforce planning corporate O*NET exposure + internal task mining → role redesign
Personal career planning high-touch / strategic / physical tasks 비중 증가 방향
Public policy sectoral exposure 분석 + reskilling / safety net 설계
L&D investment augmentation skill (prompt eng, AI literacy) > 단순 tool training
Hiring strategy senior + AI-augmented 매 leverage 매 큼; junior pipeline 재설계

기본값: 매 task 단위 분석 (occupation 단위 X) → 매 augmentation-first framing (replacement-first 매 over-pessimist).

🔗 Graph

🤖 LLM 활용

언제: 매 strategic workforce/career decision, 매 policy analysis, 매 corporate restructure planning. 언제 X: 매 short-term predictions about specific job count 매 unreliable — 매 directional / probabilistic framing.

안티패턴

  • Lump of labor fallacy: 매 work 의 fixed pie 가정 — 매 historical 으로 매 false. 매 new task / new sector 매 emerge.
  • Occupation-level only: 매 task-level 이 정확한 단위.
  • Frey-Osborne 47% 매 prediction 으로 인용: 매 exposure score 매 actual displacement 와 다름.
  • AI-doomer + AI-utopian extremes: 매 둘 다 evidence 와 매 잘 맞지 않음 — 매 transition cost 와 매 distributional impact 가 핵심.
  • Reskilling = silver bullet: 매 mid-career reskilling 매 historically low success rate (~30%) — 매 supplemented by social safety net 필요.

🧪 검증 / 중복

  • Verified (Acemoglu & Restrepo 2018, Eloundou et al. 2023, IMF Gen-AI Working Paper 2024, WEF Future of Jobs 2025).
  • 신뢰도 A (empirical), B (forecasts).

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — task-level framework + empirical findings + policy options