- 모든 .md, .html 파일 권한을 644로 정상화 - .gitignore 파일 권한도 644로 수정 - 문서 파일에 실행 권한은 불필요하고 보안상 바람직하지 않음 - deprecated 아이디어 폴더 생성 및 레벨별 UI 변경 아이디어 이동
7 lines
631 B
Markdown
7 lines
631 B
Markdown
# "Why Should I Trust You?": Explaining the Predictions of Any Classifier
|
|
|
|
- **Authors**: Marco Tulio Ribeiro, Sameer Singh, Carlos Guestrin
|
|
- **Year**: 2016
|
|
- **Summary**: This paper introduces LIME (Local Interpretable Model-agnostic Explanations). The key idea is to explain the prediction of any complex, black-box classifier by learning a simpler, interpretable model (e.g., a linear model) in the local neighborhood of the prediction. It provides intuitive, human-understandable explanations for individual predictions, answering the question of why a specific decision was made.
|
|
- **Link**: https://arxiv.org/abs/1602.04938
|