Files
2nd/10_Wiki/Topics/Other/Recording Academy (The Grammys).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

4.6 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-recording-academy-the-grammys Recording Academy (The Grammys) 10_Wiki/Topics verified self
Grammy Awards
NARAS
The Recording Academy
none A 0.9 applied
music
awards
industry
2026-05-10 pending
language framework
industry music-awards

Recording Academy (The Grammys)

매 한 줄

"매 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.

매 핵심

매 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).

매 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.

매 General Field ("Big Four")

  1. Record of the Year.
  2. Album of the Year.
  3. Song of the Year.
  4. Best New Artist.

매 응용

  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.

💻 패턴

Grammy data scrape (Python)

import requests
from bs4 import BeautifulSoup

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")
]

Wikidata SPARQL — Grammy winners

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

Spotify API — nominee playlist (TS)

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);

Grammy buzz sentiment (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))

Streaming bump analysis

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")

매 결정 기준

상황 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

🤖 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