Files
2nd/10_Wiki/Topics/AI_and_ML/Awards.md
T
Antigravity Agent f8b21af4be Wiki cleanup: error-doc removal, dedup merge, link normalization
10_Wiki/Topics 대규모 정리:
- 오류 캡처/미완성 stub 문서 227개 제거
- 교차폴더 중복 43클러스터 병합 (63파일 → redirect)
- 링크명 정규화: 깨진 링크 수정·redirect 직결·개념 매핑 ~2,400건
- 카테고리 MOC 6개 신규 생성
- Graph 섹션 미해결 related-keyword 링크 10,058건 제거

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-20 23:52:15 +09:00

218 lines
7.0 KiB
Markdown

---
id: wiki-2026-0508-awards
title: Awards (Recognition Systems)
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [상, awards, prize, recognition, Turing Award, Nobel, NeurIPS Best Paper, Kaggle]
duplicate_of: none
source_trust_level: B
confidence_score: 0.83
verification_status: conceptual
tags: [awards, recognition, motivation, scientific-community, prestige, ai-ethics, generative-ai]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: sociology / community
applicable_to: [Research Strategy, Career Planning, Community Building]
---
# Awards
## 📌 한 줄 통찰
> **"매 우수 의 사회적 공인"**. 매 motivation + 매 standard 의 signal + 매 visibility. 매 modern 의 controversy: 매 AI generative 의 award 의 ethics. 매 traditional gatekeeping vs 매 community-driven.
## 📖 핵심
### 매 function
1. **Validation**: 매 objective recognition.
2. **Standard setting**: 매 community 의 value 의 signal.
3. **Visibility**: 매 obscure talent 의 surface.
4. **Motivation**: 매 future contribution 의 incentivize.
5. **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)
```yaml
- 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)
```python
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
```python
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
```python
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)
```python
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 |