Files
2nd/10_Wiki/Topic_Programming/AI_and_ML/Structuralism.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
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 폴더 제거.
2026-07-05 00:33:48 +09:00

6.9 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-structuralism Structuralism 10_Wiki/Topics verified self
Structural Analysis
Saussurean Linguistics
구조주의
none A 0.9 applied
philosophy
linguistics
semiotics
post-structuralism
2026-05-10 pending
language framework
theory saussure-levi-strauss

Structuralism

매 한 줄

"매 의미 = 매 element 자체 X, 매 관계의 system 의 위치". Ferdinand de Saussure (1916) 의 langue/parole + signifier/signified — Lévi-Strauss (anthropology), Barthes (semiotics), Lacan (psychoanalysis), Foucault (early) 으로 확산. 2026 ML lens 에서는 매 "embedding space 의 differential geometry" 와 isomorphic.

매 핵심

매 Saussurean foundations

  • langue vs parole: 매 system (langue) vs utterance (parole) — 매 Chomsky competence/performance 의 선구.
  • signifier / signified: 매 sound-image / concept — sign 은 매 arbitrary, conventional.
  • Diachronic vs synchronic: 매 historical 변화 vs 매 system snapshot — synchronic 우선.
  • Value (valeur): 매 의미는 매 negative differential — "cat" = "not dog, not mat, not bat".

매 expansion

  • Lévi-Strauss (1958, 매 Structural Anthropology): 매 myth, kinship 의 binary opposition (raw/cooked, nature/culture).
  • Roland Barthes (1957, 매 Mythologies): 매 semiotic critique — 매 sign 의 second-order myth.
  • Lacan: "매 unconscious is structured like a language" — signifier chain.
  • Jakobson: 매 phoneme 의 distinctive features, metaphor/metonymy axis.

매 post-structuralism (1960s+)

  • Derrida (Of Grammatology, 1967): 매 différance — meaning 매 always deferred.
  • Foucault (later work): 매 discourse, power/knowledge — 매 structure 의 historicization.
  • Deleuze & Guattari: 매 rhizome — 매 structural tree 의 거부.
  • Barthes "Death of the Author" (1967): 매 reader-centered, 매 structuralist에서 post-로 이동.

매 modern (2026) connections

  • NLP / LLM embeddings: 매 word vector = 매 differential value (cosine similarity) — Saussurean valeur 의 computational realization.
  • Distributional hypothesis (Firth, "you shall know a word by the company it keeps"): 매 BERT/GPT 의 implicit structuralism.
  • Knowledge graphs / RDF: 매 relational structure — Lévi-Strauss 의 kinship system 의 echo.
  • Cognitive science: 매 conceptual spaces (Gärdenfors) — 매 geometric structuralism.

💻 패턴

매 binary opposition extraction (Lévi-Strauss style)

import numpy as np
from sentence_transformers import SentenceTransformer

# 매 2026: BGE-M3 / E5-mistral 등
model = SentenceTransformer("BAAI/bge-m3")

pairs = [("nature", "culture"), ("raw", "cooked"), ("light", "dark")]
for a, b in pairs:
    va, vb = model.encode([a, b])
    axis = vb - va  # 매 binary opposition axis
    print(f"{a}{b}: ||axis||={np.linalg.norm(axis):.3f}")

Saussurean value (differential)

# 매 "value = position in system of differences"
words = ["cat", "dog", "mat", "bat", "rat"]
embs = model.encode(words)
# 매 cat 의 value = 매 distance vector 의 다른 모든 words 와의
for i, w in enumerate(words):
    others = np.delete(embs, i, axis=0)
    differential = embs[i] - others.mean(axis=0)
    print(f"{w}: {np.linalg.norm(differential):.3f}")

Semiotic square (Greimas)

# 매 A vs not-A, B vs not-B — 매 4-corner structure
def semiotic_square(s1, s2):
    return {
        "S1": s1,
        "S2": s2,             # 매 contrary
        "not_S1": f"not-{s1}", # 매 contradictory
        "not_S2": f"not-{s2}"
    }

print(semiotic_square("life", "death"))
# 매 narratology / brand analysis 에 활용

매 structural narrative analysis (Propp 영향)

# 매 Propp 31 functions of folk tale
PROPP_FUNCTIONS = [
    "absentation", "interdiction", "violation", "reconnaissance",
    "delivery", "trickery", "complicity", "villainy",
    # ... 31 total
]

def map_story(events: list[str], llm) -> dict[str, str]:
    """매 매 event 의 Propp function 의 mapping (LLM-assisted)"""
    prompt = f"Map these events to Propp's 31 functions: {events}"
    return llm.complete(prompt)  # Claude Opus 4.7 등

매 distributional structuralism (Firth/Harris → BERT)

# 매 "company a word keeps" = context window
from transformers import AutoModel, AutoTokenizer
import torch

tok = AutoTokenizer.from_pretrained("answerdotai/ModernBERT-large")
model = AutoModel.from_pretrained("answerdotai/ModernBERT-large")

def contextual_value(word: str, contexts: list[str]):
    """매 word 의 매 different contexts 의 의미 variation"""
    embs = []
    for ctx in contexts:
        sentence = ctx.replace("___", word)
        inputs = tok(sentence, return_tensors="pt")
        with torch.no_grad():
            out = model(**inputs)
        # 매 word token embedding 추출
        embs.append(out.last_hidden_state[0, 1].numpy())
    return embs  # 매 polysemy 의 quantification

매 결정 기준

상황 Approach
매 myth / folktale 분석 Lévi-Strauss / Propp 의 binary + function
매 brand / advertising Greimas semiotic square + Barthes myth
매 NLP semantic analysis 매 distributional embedding (BGE-M3)
매 critical theory 작업 Post-structural (Derrida, Foucault) 의 보완
매 cognitive modeling Conceptual spaces (Gärdenfors)

기본값: 매 Saussurean foundation 위에 매 task 의 맞는 successor — 매 NLP 면 distributional, 매 culture 면 Lévi-Strauss/Barthes, 매 critique 면 post-structural.

🔗 Graph

🤖 LLM 활용

언제: 매 cultural artifact 분석, brand/advertisement decoding, narrative structure mapping, 매 semantic field exploration via embeddings. 언제 X: 매 strict empirical linguistics 작업 (매 corpus statistics 가 우선), 매 totalizing claims (post-structuralist critique 의 무시 위험).

안티패턴

  • Synchronic 만: 매 historical change 의 무시 — 매 Saussure 자신도 diachronic 가치 인정.
  • 매 universal structure 강요: Lévi-Strauss critique — 매 매 culture 의 own structure 의 무시.
  • Embedding cosine = meaning: 매 oversimplification — 매 polysemy, pragmatics, context dynamics 누락.
  • Author intention 의 obsession: 매 Barthes "Death of the Author" 의 무시.

🧪 검증 / 중복

  • Verified (Saussure Cours de linguistique générale 1916, Lévi-Strauss Anthropologie structurale 1958, Stanford Encyclopedia of Philosophy 2026).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — Saussure→post-structural→2026 ML embedding bridge