Skip to content

Conversation

braintrue
Copy link

Issue 1: The text contained an incorrect particle usage:

Incorrect: 파이썬 버전을 출력되어야 합니다
Correct: 파이썬 버전이 출력되어야 합니다
What was changed:
Changed the object marker "을" to the subject marker "이" in the sentence describing Python version output. In Korean grammar, when describing that something "should be displayed/output", the subject (Python version) should use the subject marker "이" rather than the object marker "을".

File modified: chapters/ko/chapter0/1.mdx (line 53)

This is a minimal one-character fix that corrects the grammatical error while maintaining the original meaning of the sentence.

Issue 2:
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: 학습 곡선 이해하기
  1. 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.

Copilot AI and others added 6 commits September 28, 2025 07:39
…4b5-4ba4cc3d40d4

[WIP] 한국어 오타를 수정해줘: 예시)파이썬 버전을 출력되어야 합니다. 수정한 버전을 PR로 원본에 올리고 싶어
…368-41efa5fb543a

한국어 코스 구조 및 노트북 링크 수정 (Fix Korean course structure and notebook links)
@HuggingFaceDocBuilderDev

The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.

braintrue and others added 7 commits September 28, 2025 17:32
…fa1-68dd73e9d6d2

[WIP] Invalid Notebook
There was an error rendering your Notebook: the 'state' key is missing from 'metadata.widgets'. Add 'state' to each, or remove 'metadata.widgets'.
Using nbformat v5.10.4 and nbconvert v7.16.6
…244-c54d0758e640

Update build_notebook() function in utils/generate_notebooks.py to include proper widget metadata structure
 Add empty but valid widget metadata with required 'state' key
 Test the fix by regenerating notebooks and validating with nbconvert
 Ensure min...
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.

3 participants