[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -2,68 +2,136 @@
id: wiki-2026-0508-recording-academy-the-grammys
title: Recording Academy (The Grammys)
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-GRAM-001]
aliases: [Grammy Awards, NARAS, The Recording Academy]
duplicate_of: none
source_trust_level: A
confidence_score: 0.92
tags: [auto-reinforced, music, culture, Awards, recording-academy]
confidence_score: 0.9
verification_status: applied
tags: [music, awards, industry]
raw_sources: []
last_reinforced: 2026-04-20
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: industry
framework: music-awards
---
# [[Recording Academy (The Grammys)|Recording Academy ([[The Grammys]])]]
# Recording Academy (The Grammys)
## 📌 한 줄 통찰 (The Karpathy Summary)
> "음악 산업의 자정 작용이자 보루: 상업적 유행을 넘어 예술적 성취와 기술적 완성을 정교한 동료 평가(Peer Review) 시스템을 통해 공인하는 글로벌 최고 권위의 비영리 협회."
## 한 줄
> **"매 US-based peer-voted music awards body"**. NARAS (1957 founded) 의 Grammy Awards (1959 first ceremony) 의 host. 매 ~13,000 voting members 의 (musicians, producers, engineers) 의 peer-vote — 매 "Grammy" name 의 gramophone trophy 의 derive. 67th ceremony 의 2025-02-02 의 LA 의 Crypto.com Arena 의 hold.
## 📖 구조화된 지식 (Synthesized Content)
미국 레코딩 아카데미(National Academy of Recording [[Arts|Arts]] and Sciences, NARAS)는 세계 최고 권위의 음악 시상식인 '그래미 어워드(Grammy Awards)'를 주관하는 기구입니다.
## 매 핵심
1. **조직 구성**:
* 가수, 작곡가, 프로듀서, 엔지니어 등 음악 산업의 실무 전문가(멤버)들로 구성.
2. **그래미 선정 프로세스 (Systemic Approach)**:
* **Entry**: 전 세계에서 수만 개의 작품 접수.
* **Screening**: 카테고리별 자격 요건 검토.
* **Nominating & Final Voting**: 회원들의 투표를 통해 후보 및 최종 수상자 결정. 대중성보다는 '음악적 전문성'과 '품질'에 비중을 둠.
3. **사회적 역할**:
* **MusiCares**: 도움이 필요한 음악가들에 대한 보건 및 긴급 지원 기여.
* **Advocacy**: 음악 저작권 보호 및 입법 활동을 통한 권익 보호.
### 매 Structure
- **NARAS** (National Academy of Recording Arts and Sciences) 의 official entity.
- **12 chapters** (LA, NY, Nashville, Atlanta, Chicago, etc.).
- **30+ genre fields** → ~94 categories (2025 ceremony).
- **CEO**: Harvey Mason Jr. (since 2021).
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 보수적이고 인종 차별적(White-centric)이라는 비판이 지속되어 왔으나, 최근 투표권자 구성의 다양성을 대폭 강화하고 힙합, 일렉트로닉, K-POP 등 장르 수용 정책을 확대하며 전면적인 조직 쇄신(RL Update)을 단행함.
- **정책 변화(RL Update)**: AI 생성 음악의 급증에 따라, "인간의 창작 기여가 없는 완전 AI 곡은 출품 불가"라는 역사적인 가이드라인을 발표하여, 기술 시대에도 '인간 창작의 신성함'을 보호하려는 강력한 정책 의지 표명.
### 매 Voting Process
1. **Submission** — labels/members 의 submit recordings.
2. **Screening** — committees 의 verify eligibility + category placement.
3. **First-round ballot** — voting members 의 nominate (up to 10 categories + 4 General Field).
4. **Final ballot** — 매 5 nominees per category 의 winner 의 vote.
## 🔗 지식 연결 (Graph)
- Semantics [[Ontology|Ontology]], Information Ethics, Aesthetics of Digital Media, Communication Theories
- **Modern Tech/Tools**: Grammy.com, Recording Academy Advocacy.
---
### 매 General Field ("Big Four")
1. Record of the Year.
2. Album of the Year.
3. Song of the Year.
4. Best New Artist.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 응용
1. Career inflection — 매 nomination/win 의 streaming spike (~+50% week-over).
2. Industry signal — 매 critical consensus 의 codify.
3. Diversity audit — 매 historical bias (e.g., women, non-pop genres) 의 ongoing reform.
**언제 이 지식을 쓰는가:**
- *(TODO)*
## 💻 패턴
**언제 쓰면 안 되는가:**
- *(TODO)*
### Grammy data scrape (Python)
```python
import requests
from bs4 import BeautifulSoup
## 🧪 검증 상태 (Validation)
url = "https://www.grammy.com/awards/67th-annual-grammy-awards"
soup = BeautifulSoup(requests.get(url).text, "html.parser")
winners = [
{"category": c.find("h3").text, "artist": c.find(".winner").text}
for c in soup.select(".category-card")
]
```
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### Wikidata SPARQL — Grammy winners
```sparql
SELECT ?artist ?artistLabel ?year WHERE {
?award wdt:P31 wd:Q368441. # Grammy Award
?artist p:P166 ?stmt.
?stmt ps:P166 ?award; pq:P585 ?date.
BIND(YEAR(?date) AS ?year)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
LIMIT 100
```
## 🧬 중복 검사 (Duplicate Check)
### Spotify API — nominee playlist (TS)
```typescript
import { SpotifyApi } from "@spotify/web-api-ts-sdk";
const sdk = SpotifyApi.withClientCredentials(id, secret);
const search = await sdk.search("Grammy 2025 nominees", ["playlist"]);
const tracks = await sdk.playlists.getPlaylistItems(search.playlists.items[0].id);
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### Grammy buzz sentiment (Python)
```python
from transformers import pipeline
clf = pipeline("sentiment-analysis", model="cardiffnlp/twitter-roberta-base-sentiment-latest")
tweets = ["Beyoncé deserved AOTY!", "Grammys irrelevant again"]
print(clf(tweets))
```
## 🕓 변경 이력 (Changelog)
### Streaming bump analysis
```python
import pandas as pd
df = pd.read_csv("spotify_daily_streams.csv", parse_dates=["date"])
ceremony = pd.Timestamp("2025-02-02")
window = df[(df.date >= ceremony) & (df.date <= ceremony + pd.Timedelta("7d"))]
bump = window.streams.sum() / df[df.date < ceremony].tail(7).streams.sum()
print(f"7d post-ceremony streaming multiple: {bump:.2f}x")
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Industry credibility check | Grammy nom/win 의 weight |
| Commercial popularity | Billboard Hot 100 의 prefer |
| Critic consensus | Metacritic / Pitchfork 의 cross-ref |
| Genre-specific | Country (CMA), Latin (Latin Grammys), R&B (BET) 의 separate |
**기본값**: 매 Grammy 의 institutional, 매 streaming 의 popular signal.
## 🔗 Graph
- 부모: [[Music-Industry]] · [[Awards]]
- 변형: [[Latin-Grammys]] · [[Grammy-Hall-of-Fame]]
- 응용: [[Album-of-the-Year]] · [[Music-Marketing]]
- Adjacent: [[Billboard]] · [[RIAA]] · [[Streaming]]
## 🤖 LLM 활용
**언제**: nominee/winner lookup, category structure 의 explain, historical trend 의 summarize.
**언제 X**: real-time ceremony updates — 매 official broadcast / live source 의 use.
## ❌ 안티패턴
- **"Grammy = best music"**: 매 voter bias (genre, gender, race) 의 documented — single signal 의 X.
- **Big Four 의 obsess**: 매 genre-specific category 의 artist 의 actual peer recognition.
- **Pre-2020 rules 의 cite**: 매 reform (anonymous review committees 의 abolish in 2021) 의 changed.
## 🧪 검증 / 중복
- Verified (grammy.com official, Wikipedia "Grammy Award").
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — voting process + Big Four + 67th ceremony |