최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 unstructured text → structured signal". Text mining 매 large text corpora 에서 patterns / entities / relationships / sentiment 의 extract 하는 분야. 매 traditional (TF-IDF, NER models) 에서 매 LLM-based extraction (structured output, function calling) 으로 매 paradigm shift.
Biomedical literature mining (gene/protein/disease NER).
💻 패턴
spaCy NER (traditional)
importspacynlp=spacy.load("en_core_web_trf")doc=nlp("Apple acquired Anthropic for $50B in March 2025.")forentindoc.ents:print(ent.text,ent.label_)# Apple ORG, Anthropic ORG, $50B MONEY, March 2025 DATE
언제: 매 unstructured text corpus 의 query / extract / classify, schema-driven extraction, low-to-medium volume.
언제 X: 매 milli-second latency 의 필요 (real-time chat moderation) — 매 small distilled model.
❌ 안티패턴
Regex-only complex extraction: 매 brittle — 매 LLM hybrid 로 graceful.
No evaluation set: 매 LLM 매 hallucinate — 매 ground-truth eval 의 maintain.
Full-document LLM 의 every query: 매 cache or pre-extract structured DB.
Unicode normalization 의 skip: 매 Korean/CJK text 매 NFC normalize 필수.