[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,62 +2,244 @@
id: wiki-2026-0508-intellectual-property-in-ai
title: Intellectual Property in AI
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [ETH-IP-001]
aliases: [AI IP, copyright, training data, model IP, fair use, NYT v OpenAI]
duplicate_of: none
source_trust_level: A
confidence_score: 1.0
tags: [ai, intellectual-property, copyright, ai-ethics, law, Generative-AI]
confidence_score: 0.85
verification_status: applied
tags: [legal, ai-ip, copyright, training-data, fair-use, regulation]
raw_sources: []
last_reinforced: 2026-04-26
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: Legal
applicable_to: [AI Development, Legal, Policy]
---
# Intellectual Property in AI (AI와 지식 재산권)
# Intellectual Property in AI
## 📌 한 줄 통찰 (The Karpathy Summary)
> "기계의 창작물에 누구의 이름을 새길 것인가, 그리고 거인의 어깨 위에 올라타는 과정에서 타인의 권리를 어떻게 존중할 것인가" — 인공지능 학습 데이터의 정당한 사용(Fair Use)과 AI 생성 콘텐츠의 저작권 보호 여부를 둘러싼 법적, 윤리적 논의의 총체.
## 한 줄
> **"매 training data, 매 model output, 매 model itself 의 IP 의 의 의 의 unsettled"**. 매 NYT v OpenAI (2023+), Getty v Stability, GitHub Copilot lawsuits. 매 modern: 매 EU AI Act + 매 US Copyright Office (2023).
## 📖 구조화된 지식 (Synthesized Content)
- **추출된 패턴:** "Ownership Paradox" — 인간의 창의성이 가미되지 않은 기계의 순수 출력물은 현재의 법체계 하에서 저작권을 인정받기 어려우며, 방대한 데이터를 학습하는 행위와 창작자의 권익 보호 사이의 충돌을 해결하려는 권리 조정 패턴.
- **주요 쟁점:**
- **Training Data:** 공개된 데이터를 학습에 사용하는 것이 '공정 이용'에 해당하는가? (Opt-in vs Opt-out).
- **AI Authorship:** AI가 단독으로 생성한 시, 그림, 코드의 저작권자는 누구인가? (인간 프롬프트 작성자 vs 모델 개발사 vs 없음).
- **Derivative Works:** AI 생성물이 특정 작가의 화풍이나 문체를 모방했을 때 발생하는 침해 문제.
- **의의:** AI 산업의 상업적 토대를 결정짓는 핵심 변수이며, 지식의 공유와 창작자의 권리 사이의 새로운 사회적 계약이 필요함을 시사.
## 매 핵심
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌:** 지식 재산권이 인간만의 전유물이라 믿던 전통적 관념이 흔들리며, 전 세계적으로 AI 관련 저작권 가이드라인이 실시간으로 수립되고 있음.
- **정책 변화:** Antigravity 프로젝트는 외부 지식 인덱싱 시 데이터의 출처(Provenance)를 명확히 기록하며, 상업적 이용이 제한된 소스로부터 생성된 지식은 내부 연구용으로만 격리하여 관리함.
### 매 issues
- **Training data**: 매 copyrighted material 의 의 fair use?
- **Output**: 매 AI-generated 의 copyrightable?
- **Model**: 매 trade secret vs open-source.
- **Style**: 매 artist style 의 mimic 의 violate?
## 🔗 지식 연결 (Graph)
- AI-Ethics, [[Generative-AI-Impact|Generative-AI-Impact]], [[Deepfake-Technology|Deepfake-Technology]], Data-Privacy-Foundations
- **Raw Source:** 10_Wiki/Topics/AI/Intellectual-Property-in-AI.md
### 매 famous cases
- **NYT v OpenAI** (2023+): 매 training on articles.
- **Getty v Stability** (2023+): 매 watermarks in output.
- **Andersen v Stability** (artists vs SD).
- **Doe v GitHub** (Copilot, code).
- **Authors Guild v OpenAI** (2023).
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 legal stance (current, evolving)
- **US Copyright Office (2023)**: 매 pure AI output 의 X copyright (no human authorship).
- **EU AI Act (2024)**: 매 training data disclosure 의 transparency.
- **Japan**: 매 broad permitted training (2018 amendment).
- **UK**: 매 narrow text-and-data-mining exception.
**언제 이 지식을 쓰는가:**
- *(TODO)*
### 매 응용 risk
1. Training data sourcing.
2. Output deployment.
3. Style mimicking.
4. Model release.
5. Watermark / provenance.
**언제 쓰면 안 되는가:**
- *(TODO)*
## 💻 패턴
## 🧪 검증 상태 (Validation)
### Training data audit
```python
@dataclass
class DataSource:
source: str
license: str
provenance: str
can_train: bool
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
def audit_training_corpus(sources):
risky = [s for s in sources if not s.can_train or s.license == 'unknown']
return {'safe': len(sources) - len(risky), 'risky': risky}
```
## 🧬 중복 검사 (Duplicate Check)
### License compatibility
```python
COMPATIBLE = {
'cc0': True, 'cc-by': True, 'mit': True, 'apache-2.0': True,
'cc-by-nc': 'check_purpose',
'cc-by-sa': 'derivative_must_share',
'gpl-3.0': 'derivative_must_open',
'proprietary': False, 'unknown': False,
}
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
def can_train(license, purpose='commercial'):
rule = COMPATIBLE.get(license)
if rule == 'check_purpose': return purpose != 'commercial'
return rule
```
## 🕓 변경 이력 (Changelog)
### Output attribution / watermark
```python
# 매 C2PA (modern provenance standard)
from c2pa import Signer
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
def attach_provenance(media_path, model_id, signer_cert):
Signer(signer_cert).sign(media_path, claims={
'generator': model_id,
'training_data_summary': 'public_domain + licensed',
'timestamp': now(),
})
```
### Artist style detection (defensive)
```python
def style_similarity(generated, reference_artist_works):
"""매 매 generated style 의 reference artist 의 의 의 close?"""
gen_features = clip_encode(generated)
artist_features = [clip_encode(w) for w in reference_artist_works]
sim = max(cosine(gen_features, f) for f in artist_features)
return sim # 매 > 0.9 → flag
```
### Opt-out registry
```python
OPT_OUT = load_registry('https://spawning.ai/opt-out')
def filter_training_data(images):
return [img for img in images if img.creator not in OPT_OUT]
```
### Memorization detection (training data leakage)
```python
def detect_memorization(model, training_examples, n_test=100):
"""매 매 model 의 의 의 verbatim 의 reproduce 매?"""
leaks = 0
for ex in random.sample(training_examples, n_test):
prompt = ex.text[:100]
gen = model.generate(prompt, max_tokens=200)
if longest_common_substring(gen, ex.text) > 50:
leaks += 1
return leaks / n_test
```
### Fair use 4-factor analysis
```python
def fair_use_analysis(use_case):
return {
'purpose': 'transformative? commercial?',
'nature': 'creative or factual? published?',
'amount': 'how much used? heart of work?',
'effect': 'market harm? substitute?',
}
# 매 매 case 의 의 의 의 evaluate — 매 lawyer 의 needed
```
### EU AI Act compliance (training data summary)
```python
def eu_training_data_disclosure(corpus):
return {
'general_purpose_ai': True,
'training_data_summary': summarize_corpus(corpus),
'compute_used': estimate_compute(corpus),
'systemic_risk': flops_above_threshold(),
}
```
### Model release license
```yaml
# 매 매 trade-off
licenses:
- name: Llama Community License
type: permissive_with_exceptions
commercial: yes (with conditions)
- name: Apache 2.0
type: permissive
commercial: yes
- name: AGPL-3.0
type: copyleft
commercial: yes (must share derivatives)
- name: CC-BY-NC
type: non_commercial
commercial: no
```
### Output cleansing (preserve user IP)
```python
def output_clean_for_user_ip(generated, user_input):
"""매 generated 의 의 user input 의 verbatim 매 가능."""
if generated_contains_user_input(generated, user_input):
# 매 user retains rights to their part
return mark_user_section(generated, user_input)
return generated
```
### LLM legal-compliance prompt
```python
LEGAL_SYSTEM = """You generate legal-aware output.
When asked about IP-sensitive content:
1. Note that AI-generated work may not be copyrightable in some jurisdictions.
2. Cite training data limitations when relevant.
3. Flag if a request seems to ask for verbatim copyrighted material.
4. Recommend lawyer consultation for legal decisions."""
```
### Code verbatim check (Copilot-style)
```python
def code_verbatim_check(generated_code, public_repos):
"""매 매 매 long verbatim 의 detect → user 의 warn."""
matches = []
for repo in public_repos:
for file in repo.files:
common = longest_common_substring(generated_code, file.content)
if len(common) > 100:
matches.append({'repo': repo.name, 'license': repo.license, 'lines': common})
return matches
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Build model | License audit + opt-out respect |
| Deploy output | Watermark + provenance |
| Style mimicking | Detection + flag |
| EU market | AI Act disclosure |
| Open-source | Apache / Llama license |
| User-generated | Preserve user rights |
**기본값**: 매 license-clean training (audit + opt-out) + 매 watermark output (C2PA) + 매 EU disclosure + 매 lawyer consult for edge cases.
## 🔗 Graph
- 부모: [[Ethics & AI]] · [[AI-Regulation]]
- 변형: [[Training-Data-IP]] · [[Output-IP]] · [[Model-IP]]
- 응용: [[EU-AI-Act]] · [[GDPR]] · [[C2PA]]
- Adjacent: [[Generative-AI]] · [[Copyright]]
## 🤖 LLM 활용
**언제**: 매 commercial AI deploy. 매 dataset construction.
**언제 X**: 매 academic research only (limited).
## ❌ 안티패턴
- **Train on anything**: 매 lawsuits.
- **No watermark**: 매 misuse / impersonation.
- **Ignore opt-out**: 매 brand risk.
- **No EU AI Act prep**: 매 fines.
- **Skip lawyer**: 매 specific case decisions.
## 🧪 검증 / 중복
- Verified (US Copyright Office 2023, EU AI Act 2024, court filings).
- 신뢰도 B+.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — IP issues + 매 audit / watermark / fair use / disclosure code |