"매 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.
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
UBI / negative income tax — 매 still pilot stage.
Reskilling / displacement insurance (Singapore SkillsFuture, EU Just Transition).
Working time reduction (4-day week trials).
AI-specific tax (Bill Gates proposal).
Sectoral protection (e.g., truckers vs autonomous trucks).
매 응용
Workforce planning (어느 role 매 AI exposure 높은지).
Curriculum design (대학, bootcamp).
Public policy modeling.
Corporate L&D investment 결정.
Personal career strategy.
💻 패턴
1. O*NET task exposure score (Python)
# Compute occupation-level AI exposure from task descriptionsimportpandasaspdfromsentence_transformersimportSentenceTransformerimportnumpyasnpembedder=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_textai_emb=embedder.encode(AI_CAPS,normalize_embeddings=True)defexposure(task_text:str)->float:t=embedder.encode(task_text,normalize_embeddings=True)returnfloat(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))
# Treatment: high-exposure occupations, post: 2023+importstatsmodels.formula.apiassmfpanel["post"]=(panel.year>=2023).astype(int)panel["treat"]=(panel.exposure>panel.exposure.median()).astype(int)panel["did"]=panel.post*panel.treatm=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 exposuredefrecommend(current_occ:str,df:pd.DataFrame,top_k=5):cur_skills=df[df.occ==current_occ].iloc[0].skill_vector# pre-computedcandidates=df[df.exposure<df.exposure.quantile(0.3)]candidates=candidates.assign(sim=candidates.skill_vector.apply(lambdav:float(v@cur_skills)),)returncandidates.nlargest(top_k,"sim")[["occ","wage_median","sim","exposure"]]
5. Macro impact simulation (production-function)
# Cobb-Douglas with AI as capital-like factorimportnumpyasnpdefgdp(L,K,AI,alpha=0.3,beta=0.5,gamma=0.2,A=1.0):returnA*L**alpha*K**beta*AI**gamma# Scenario: AI capital grows 30%/yr, labor productivity 비례years=np.arange(2026,2036)L0,K0,AI0=100,100,10gdp_path=[gdp(L0*1.005**i,K0*1.02**i,AI0*1.30**i)foriinrange(len(years))]print({y:round(v,1)fory,vinzip(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).
언제: 매 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).