9148c358d0
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 폴더 제거.
5.3 KiB
5.3 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-deep-grammar | Deep Grammar | 10_Wiki/Topics | verified | self |
|
none | A | 0.88 | applied |
|
2026-05-10 | pending |
|
Deep Grammar
매 한 줄
"매 surface sentence 의 underlying structure". Chomsky 의 generative grammar — 매 finite rule 의 infinite sentence 의 produce. 매 deep structure (meaning) ↔ surface structure (form). 매 modern: 매 LLM 의 implicit 의 learn (no explicit grammar).
매 핵심
매 Chomsky hierarchy
- Type 0 (Recursively enumerable): 매 Turing-complete.
- Type 1 (Context-sensitive): 매 a^n b^n c^n.
- Type 2 (Context-free): 매 programming language.
- Type 3 (Regular): 매 regex.
매 deep vs surface
- Deep structure: 매 meaning representation.
- Surface: 매 spoken / written form.
- Transformation: 매 active ↔ passive.
매 universal grammar (UG)
- 매 innate language faculty (Chomsky).
- 매 parameter setting (head-initial vs head-final).
- 매 critical period.
매 modern stance
- Pre-LLM: 매 explicit rule (CFG, dependency grammar).
- Post-LLM: 매 implicit (transformer 의 attention 의 learn).
- Hybrid: 매 LLM + grammar constraint (decoding).
매 응용
- Parsing: 매 syntax tree.
- Compiler: 매 BNF / EBNF.
- NLP: 매 POS tag, dependency.
- Code completion: 매 grammar-guided LLM.
- DSL: 매 ANTLR / Tree-sitter.
- Constrained decoding: 매 JSON schema 의 LLM.
💻 패턴
CFG with NLTK
import nltk
grammar = nltk.CFG.fromstring("""
S -> NP VP
NP -> Det N | Det N PP
VP -> V NP | V NP PP
PP -> P NP
Det -> 'the' | 'a'
N -> 'dog' | 'cat' | 'park'
V -> 'saw' | 'chased'
P -> 'in' | 'with'
""")
parser = nltk.ChartParser(grammar)
for tree in parser.parse('the dog saw a cat in the park'.split()):
tree.pretty_print()
Dependency parsing (spaCy)
import spacy
nlp = spacy.load('en_core_web_sm')
doc = nlp("The cat sat on the mat.")
for token in doc:
print(f'{token.text:10} {token.dep_:10} {token.head.text}')
Tree-sitter grammar (DSL)
module.exports = grammar({
name: 'mylang',
rules: {
source_file: $ => repeat($._statement),
_statement: $ => choice($.assignment, $.function_call),
assignment: $ => seq($.identifier, '=', $._expression),
identifier: $ => /[a-zA-Z_][a-zA-Z0-9_]*/,
// ...
}
});
Constrained LLM decoding (grammar-guided)
from outlines import models, generate
model = models.transformers('gpt2')
# 매 regex constraint
generator = generate.regex(model, r'\d{4}-\d{2}-\d{2}')
print(generator('Date: '))
# 매 JSON schema
from pydantic import BaseModel
class User(BaseModel):
name: str
age: int
gen = generate.json(model, User)
PEG parser
# parsimonious
from parsimonious.grammar import Grammar
grammar = Grammar(r"""
expr = term (("+" / "-") term)*
term = factor (("*" / "/") factor)*
factor = number / "(" expr ")"
number = ~"[0-9]+"
""")
tree = grammar.parse("3 + 4 * 2")
Chomsky-Normal-Form CYK
def cyk(words, grammar):
n = len(words)
table = [[set() for _ in range(n)] for _ in range(n)]
for i, w in enumerate(words):
for lhs, rhs in grammar:
if rhs == (w,): table[i][i].add(lhs)
for length in range(2, n + 1):
for i in range(n - length + 1):
j = i + length - 1
for k in range(i, j):
for lhs, rhs in grammar:
if len(rhs) == 2 and rhs[0] in table[i][k] and rhs[1] in table[k+1][j]:
table[i][j].add(lhs)
return 'S' in table[0][n-1]
매 결정 기준
| 상황 | Approach |
|---|---|
| Programming language | CFG / PEG |
| NLP parsing | Dependency (spaCy) |
| LLM output structure | Constrained decoding |
| Custom DSL | Tree-sitter |
| Compiler frontend | ANTLR / yacc |
| Linguistics research | UG / minimalist |
기본값: 매 LLM era — 매 implicit grammar (transformer) + 매 constrained decoding 의 critical output.
🔗 Graph
- 변형: Generative-Grammar · Universal-Grammar
- 응용: Domain-Specific-Languages · NLP
- Adjacent: Transformer_Architecture_and_LLM_Foundations
🤖 LLM 활용
언제: 매 syntactic analysis. 매 grammar-guided generation. 매 DSL design. 언제 X: 매 free-form text. 매 zero-shot LLM.
❌ 안티패턴
- Over-rigid grammar: 매 LLM 의 advantage 의 lose.
- Ignore ambiguity: 매 parse multiple.
- Deep ≠ semantic: 매 modern view 의 separate.
- No constraint at decode: 매 invalid output.
🧪 검증 / 중복
- Verified (Chomsky, formal language theory).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-04-20 | Auto-reinforced |
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — Chomsky hierarchy + 매 NLTK / spaCy / tree-sitter / constrained decode code |