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 폴더 제거.
7.0 KiB
7.0 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-awards | Awards (Recognition Systems) | 10_Wiki/Topics | verified | self |
|
none | B | 0.83 | conceptual |
|
2026-05-10 | pending |
|
Awards
📌 한 줄 통찰
"매 우수 의 사회적 공인". 매 motivation + 매 standard 의 signal + 매 visibility. 매 modern 의 controversy: 매 AI generative 의 award 의 ethics. 매 traditional gatekeeping vs 매 community-driven.
📖 핵심
매 function
- Validation: 매 objective recognition.
- Standard setting: 매 community 의 value 의 signal.
- Visibility: 매 obscure talent 의 surface.
- Motivation: 매 future contribution 의 incentivize.
- Network: 매 winner 의 connect.
매 AI / CS 의 award
Lifetime achievement
- Turing Award (ACM): 매 CS 의 Nobel.
- Nobel Prize (Physics 2024 to Hinton).
- Lifetime Achievement (학회).
Paper / research
- NeurIPS / ICML / ICLR Best Paper: 매 frontier 의 trend.
- NeurIPS Test of Time: 매 10 year 의 enduring.
- CVPR / ECCV Best Paper: 매 vision.
Practical / applied
- Kaggle 우승: 매 ML competition.
- Hackathon: 매 rapid prototype.
- NeurIPS Datasets & Benchmarks: 매 infra contribution.
Industry
- Y Combinator 선정: 매 startup recognition.
- Forbes 30 under 30: 매 entrepreneur.
매 trade-off
- Prestige vs accessibility: 매 elite vs democratic.
- Quality vs popularity: 매 expert vs vote.
- Innovation vs continuity: 매 disruptive 의 reward 의 어려움.
- Individual vs team: 매 large project 의 attribution.
- Disclosed methodology: 매 transparent vs gatekeeping.
매 modern issue
Generative AI 와 award
- 매 AI 생성 art 의 award (콜로라도 주 박람회 2022).
- 매 photography contest 의 AI 의 ban.
- 매 disclosure 의무.
- 매 separate category (Adobe, Sony 의 시도).
Bias
- 매 reviewer demographic.
- 매 ML conference 의 famous lab 의 favor.
- 매 double-blind 의 effectiveness 의 limited.
Replication crisis
- 매 award winning 의 replicate 의 X.
- 매 NeurIPS 의 reproducibility checklist.
매 knowledge ecosystem 의 응용
- Best Paper: 매 trend signal.
- Test of Time: 매 enduring contribution.
- Citation count: 매 long-term impact.
- GitHub stars / forks: 매 community signal.
매 alternative recognition
- Open access publication.
- Replication studies.
- Open-source contribution.
- Mentorship recognition.
- Public engagement.
💻 패턴 (응용 — community recognition system)
Reproducibility checklist (NeurIPS-style)
- claims_match_results: true
- code_available: https://github.com/...
- data_available: true
- compute_described: 8x A100, 36 hours
- hyperparameter_searched: detailed in section 5
- random_seed_disclosed: 42, 123, 456
- statistical_significance: p < 0.01, n=10 seeds
- error_bar: ± 1 std
Award decision (multi-criteria)
def evaluate_paper(paper, reviewers):
scores = []
for r in reviewers:
scores.append({
'novelty': r.score('novelty'),
'rigor': r.score('rigor'),
'impact': r.score('impact'),
'clarity': r.score('clarity'),
'reproducibility': r.score('reproducibility'),
})
# 매 inter-rater agreement check
if max(scores, key=lambda s: sum(s.values()))[0] - min(scores, key=lambda s: sum(s.values()))[0] > 5:
return 'discuss' # 매 disagreement 의 large
# 매 multi-dim aggregate
avg = {k: np.mean([s[k] for s in scores]) for k in scores[0]}
return avg if all(v > 7 for v in avg.values()) else 'reject'
Bias-aware reviewer matching
def match_reviewers(paper, pool, n=3):
# 매 author affiliation 의 conflict 회피
pool = [r for r in pool if r.affiliation != paper.affiliation]
# 매 expertise overlap (positive)
by_expertise = sorted(pool, key=lambda r: -overlap(r.expertise, paper.topics))
# 매 geographic / gender diversity
selected = []
for r in by_expertise:
if any(s.affiliation == r.affiliation for s in selected): continue
selected.append(r)
if len(selected) == n: break
return selected
Generative AI disclosure
class SubmissionPolicy:
REQUIRES_DISCLOSURE = True
def validate(self, submission):
if not submission.has_disclosure_form():
return 'rejected: missing AI disclosure'
if submission.ai_use == 'generative_image' and \
submission.category not in ['ai_art', 'experimental']:
return 'rejected: wrong category for AI-generated work'
return 'accepted'
Test of Time (long-term impact)
def test_of_time_score(paper, year=10):
"""매 10 year 후 의 enduring impact."""
return {
'citations_per_year_5to10': paper.citations[5:10] / 5,
'follow_up_papers': count_follow_ups(paper),
'industry_adoption': industry_signals(paper),
'curriculum_inclusion': in_textbook(paper),
'reproductions': count_replications(paper),
}
🤔 결정 기준
| 상황 | Recognition |
|---|---|
| Frontier research | Best Paper |
| Long-term contribution | Test of Time |
| Practical | Kaggle / hackathon |
| Career milestone | Turing / Nobel |
| Open science | Reproducibility / open-source |
| Mentorship | Distinguished Mentor |
| AI generative | Disclosed + separate category |
기본값: 매 multi-dim + 매 disclosure + 매 reproducibility.
🔗 Graph
- 부모: Motivation
- 변형: Turing-Award · NeurIPS-Best-Paper
- 응용: Kaggle
- Adjacent: Goodharts-Law · Authenticity
🤖 LLM 활용
언제: 매 award strategy. 매 community recognition design. 매 reviewer process. 언제 X: 매 award 의 sole career goal (motivation 의 trap).
❌ 안티패턴
- Single-criterion award: 매 game.
- No reviewer diversity: 매 echo chamber.
- No disclosure (AI): 매 trust violation.
- Award as goal (Goodhart): 매 prestige farming.
- No reproducibility check: 매 fake winner.
- Citation count 의 only: 매 quantity > quality.
🧪 검증 / 중복
- Verified (NeurIPS / ICML reviewer guides, ACM Turing, generative AI policy debates).
- 신뢰도 B.
- Related: Benchmarks · Authenticity · Replication-Crisis · Goodharts-Law.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — function + AI/CS award + generative issue + 매 reviewer / disclosure code |