Skip to content

Conversation

Copy link

Copilot AI commented Sep 28, 2025

This PR fixes several structural and linking issues in the Korean translation of the Hugging Face Course that were affecting the user experience for Korean learners.

Issues Fixed

1. Duplicate Chapter Titles in Table of Contents

The Korean _toctree.yml file contained duplicate entries for "3. 🤗 사전훈련된 모델 미세조정" (Fine-tuning a pretrained model), which caused navigation confusion:

Before:

- title: 3. 🤗 사전훈련된 모델 미세조정
  sections:
  - local: chapter3/2
    title: 데이터 처리
  - local: chapter3/5
    title: 학습 곡선 이해하기

- title: 3. 🤗 사전훈련된 모델 미세조정  # Duplicate!
  sections:
  - local: chapter3/3
    title: Trainer API를 사용한 모델 미세조정

After:

- title: 3. 🤗 사전훈련된 모델 미세조정
  sections:
  - local: chapter3/2
    title: 데이터 처리
  - local: chapter3/3
    title: Trainer API를 사용한 모델 미세조정
  - local: chapter3/5
    title: 학습 곡선 이해하기

2. Incorrect Notebook Links

All Korean course files were linking to English notebooks (course/en/chapter*) instead of Korean ones (course/ko/chapter*), preventing Korean users from accessing localized notebook content.

Before:

notebooks={[
  {label: "Google Colab", value: "https://colab.research.google.com/github/huggingface/notebooks/blob/master/course/en/chapter3/section2.ipynb"},
  {label: "Aws Studio", value: "https://studiolab.sagemaker.aws/import/github/huggingface/notebooks/blob/master/course/en/chapter3/section2.ipynb"},
]}

After:

notebooks={[
  {label: "Google Colab", value: "https://colab.research.google.com/github/huggingface/notebooks/blob/master/course/ko/chapter3/section2.ipynb"},
  {label: "Aws Studio", value: "https://studiolab.sagemaker.aws/import/github/huggingface/notebooks/blob/master/course/ko/chapter3/section2.ipynb"},
]}

Files Changed

  • chapters/ko/_toctree.yml: Fixed duplicate chapter structure
  • 14 Korean MDX files across chapters 2, 3, 5, and 8: Updated notebook links from English (en) to Korean (ko)

Validation

  • ✅ All files referenced in table of contents exist
  • ✅ YAML syntax is valid
  • ✅ Code formatting standards maintained
  • ✅ No broken internal links

This improvement ensures Korean learners have a consistent and properly structured learning experience with access to the correct language-specific resources.

Original prompt

이제 PR을 올릴 거야 title과 Description을 추가해줘


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: braintrue <89627517+braintrue@users.noreply.github.com>
Copilot AI changed the title [WIP] 이제 PR을 올릴 거야 title과 Description을 추가해줘 한국어 코스 구조 및 노트북 링크 수정 (Fix Korean course structure and notebook links) Sep 28, 2025
Copilot AI requested a review from braintrue September 28, 2025 07:59
@braintrue braintrue marked this pull request as ready for review September 28, 2025 08:03
@braintrue braintrue merged commit 1cd5171 into main Sep 28, 2025
Copy link
Owner

@braintrue braintrue left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Noted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants