데이터 분석/머신러닝 노트북의 결과를 분석하여 표준화된 Model Card 보고서(Markdown)를 자동 생성합니다.
이 워크플로우는 Jupyter Notebook의 분석 결과를 추출하여, Hugging Face/Google 표준에 부합하는 Model Card 문서를 생성합니다.
*.ipynb)를 입력받습니다.this document를 읽어 추출 규칙과 표준을 로드합니다.read_file로 노트북 내용을 읽습니다 (JSON 포맷 파싱).accuracy_score, f1_score 등 정량적 지표의 실행 결과를 찾습니다.X.columns, feature_importances_ 등을 통해 주요 변수를 추출합니다.resources/report-template.md를 로드합니다.{...})을 채웁니다.
)로 삽입합니다.docs/reports/[Topic]_Report.md (혹은 Model_Card_[Topic].md 등 일관된 규칙 사용) 아티팩트를 생성합니다.This skill defines the standard for generating Model Cards from data analysis notebooks. It aligns with Hugging Face and Google standards to ensure transparency, reproducibility, and ethical reporting.
The output must follow report-template.md.
Essential for machine readability (Hugging Face Hub compatibility).
language: (e.g., en, ko)library_name: (e.g., sklearn, pytorch)tags: (e.g., tabular-classification, finance)metrics: (e.g., accuracy, f1)