Skip to content

Commit d15cb8e

Browse files
committed
메뉴 개편(Dropdown), 도메인 API 문서 추가 등
- 메뉴 개편: Dropdown 형태, 배우기 / 블로그 / 문서 / 커뮤니티로 단순화 (향후 이벤트 / 소모임 추가 예정) - 메뉴 관리: _data/navigation.yml 에서 관리 - 도메인 API 메뉴 및 문서 추가: domains.html 및 _domains/ - Ecosystem 링크 개선: PyTorch Landscape - 뉴스 제거: _news/* - 그 외 사이트 소개, 링크 등
1 parent 34e18dd commit d15cb8e

40 files changed

+697
-124
lines changed

_about/website.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ snippet: >
2323
2424
---
2525

26-
파이토치 한국 사용자 모임은 2018년 중순 학습 목적으로 PyTorch 튜토리얼 문서를 한국어로 번역하면서 시작하였습니다. <br />
26+
파이토치 한국 사용자 모임(PyTorchKR)은 2018년 4월, 학습 목적으로 파이토치 튜토리얼 문서를 한국어로 번역하면서 시작하였습니다. <br />
2727

28-
PyTorch를 학습하고 사용하는 한국 사용자들이 시작한 사용자 커뮤니티로, 한국어를 사용하시는 많은 분들께 PyTorch를 소개하고 함께 배우며 성장하는 것을 목표로 합니다.<br />
28+
PyTorch를 학습하고 사용하는 한국 사용자들이 시작한 사용자 커뮤니티로, 한국어를 사용하시는 많은 분들께 파이토치 및 인공지능 관련 정보와 지식, 경험을 공유하고 함께 배우며 성장하는 것을 목표로 합니다.<br />
2929

3030
PyTorch를 사용하며 얻은 유용한 정보를 공유하고 싶으시거나 다른 사용자와 소통하고 싶으시다면 <a href="{{ site.external_urls.site_community }}">커뮤니티 공간</a>에 방문해주세요!

_config.yml

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: "파이토치 한국 사용자 모임 (PyTorch Korea User Group)"
44
author: "PyTorch Korea User Group"
55
default_author: "PyTorch Korea User Group"
66
description: >-
7-
파이토치 한국 사용자 모임에 오신 것을 환영합니다.
8-
딥러닝 프레임워크인 파이토치(PyTorch)를 사용하는 한국어 사용자들을 위해 문서를 번역하고 정보를 공유하고 있습니다.
7+
파이토치 한국 사용자 모임(PyTorchKR)에 오신 것을 환영합니다.
8+
파이토치 한국 사용자 모임은 인공지능 프레임워크 파이토치(PyTorch)를 사용하는 한국어 사용자들이 지식과 경험을 공유하며 함께 성장하는 커뮤니티입니다.
99
latest_version: 1.0
1010
timezone: Asia/Seoul
1111
url: "https://pytorch.kr"
@@ -72,26 +72,11 @@ keep_files: [
7272
vendor/assets,
7373
docs/master/_static/js/vendor/
7474
]
75-
repository: PyTorchKorea/pytorch.kr
76-
variables:
77-
community_discourse_id: bot
78-
external_urls:
79-
org_www: https://pytorch.org
80-
org_docs: https://pytorch.org/docs
81-
org_tutorials: https://pytorch.org/tutorials
82-
hub_template: https://github.com/pytorch/hub/blob/master/docs/template.md
83-
previous_pytorch_versions: https://pytorch.kr/get-started/previous-versions/
84-
site_tutorials: https://tutorials.pytorch.kr/
85-
site_blog: https://pytorch.kr/blog
86-
site_community: https://discuss.pytorch.kr/
87-
site_hub: https://pytorch.kr/hub
88-
repo_tutorials: https://github.com/PyTorchKorea/tutorials-kr
89-
repo_hub: https://github.com/PyTorchKorea/hub-kr
90-
repo_www: https://github.com/PyTorchKorea/pytorch.kr
91-
repo_org: https://github.com/PyTorchKorea
9275
livereload: true
9376
markdown: kramdown
9477
highlighter: rouge
78+
79+
# Jekyll Collections: Blog, Events, Hub, News, Resources, ...
9580
collections:
9681
about:
9782
output: false
@@ -117,6 +102,10 @@ collections:
117102
permalink: /news/:title/
118103
resources:
119104
output: false
105+
domains:
106+
output: false
107+
108+
# Blog Pagination
120109
pagination:
121110
enabled: true
122111
per_page: 7
@@ -128,3 +117,25 @@ pagination:
128117
trail:
129118
before: 2
130119
after: 2
120+
121+
# Variables
122+
repository: PyTorchKorea/pytorch.kr
123+
variables:
124+
community_discourse_id: bot
125+
126+
# External URLs
127+
external_urls:
128+
org_www: https://pytorch.org
129+
org_docs: https://docs.pytorch.org/docs
130+
org_tutorials: https://docs.pytorch.org/tutorials
131+
org_landscape: https://landscape.pytorch.org
132+
hub_template: https://github.com/pytorch/hub/blob/master/docs/template.md
133+
previous_pytorch_versions: https://pytorch.kr/get-started/previous-versions/
134+
site_tutorials: https://tutorials.pytorch.kr
135+
site_blog: https://pytorch.kr/blog
136+
site_community: https://discuss.pytorch.kr
137+
site_hub: https://pytorch.kr/hub
138+
repo_tutorials: https://github.com/PyTorchKorea/tutorials-kr
139+
repo_hub: https://github.com/PyTorchKorea/hub-kr
140+
repo_www: https://github.com/PyTorchKorea/pytorch.kr
141+
repo_org: https://github.com/PyTorchKorea

_data/navigation.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
main_menu:
2+
- title: "배우기"
3+
key: "get-started"
4+
has_dropdown: true
5+
dropdown_items:
6+
- title: "PyTorch 시작하기"
7+
url: "/get-started/locally/"
8+
url_type: "baseurl"
9+
external: false
10+
- title: "기본 익히기"
11+
url: "https://tutorials.pytorch.kr/beginner/basics/intro.html"
12+
external: false
13+
target: "_self"
14+
- title: "한국어 튜토리얼"
15+
url: "https://tutorials.pytorch.kr"
16+
external: false
17+
target: "_self"
18+
- title: "한국어 모델 허브"
19+
url: "/hub"
20+
url_type: "baseurl"
21+
external: false
22+
- title: "Official Tutorials"
23+
url: "https://docs.pytorch.org/tutorials/"
24+
external: true
25+
target: "_blank"
26+
27+
- title: "블로그"
28+
key: "blog"
29+
url: "/blog"
30+
url_type: "baseurl"
31+
has_dropdown: false
32+
33+
- title: "문서"
34+
key: "docs"
35+
has_dropdown: true
36+
dropdown_items:
37+
- title: "PyTorch API"
38+
url: "https://docs.pytorch.org/docs/"
39+
external: true
40+
target: "_blank"
41+
- title: "Domain API 소개"
42+
url: "/domains"
43+
url_type: "baseurl"
44+
external: false
45+
- title: "한국어 튜토리얼"
46+
url: "https://tutorials.pytorch.kr"
47+
external: false
48+
target: "_self"
49+
- title: "Official Tutorials"
50+
url: "https://docs.pytorch.org/tutorials/"
51+
external: true
52+
target: "_blank"
53+
54+
- title: "커뮤니티"
55+
key: "community"
56+
has_dropdown: true
57+
dropdown_items:
58+
- title: "한국어 커뮤니티"
59+
url: "https://discuss.pytorch.kr/"
60+
external: false
61+
target: "_self"
62+
- title: "개발자 정보"
63+
url: "/resources/"
64+
url_type: "baseurl"
65+
external: false
66+
- title: "Landscape"
67+
url: "https://landscape.pytorch.org/"
68+
external: true
69+
target: "_blank"

_domains/functorch.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Functorch
3+
title_prefix: func
4+
title_suffix: torch
5+
summary: JAX에서 영감을 받은 PyTorch의 함수형 프로그래밍 라이브러리입니다. vmap(벡터화), grad(자동 미분), jacrev/jacfwd(야코비안 계산) 등의 함수 변환을 제공하여 연구와 프로덕션 워크로드를 모두 지원합니다.
6+
link: https://pytorch.org/functorch/
7+
order: 9
8+
category: functional_programming
9+
---

_domains/pytorch_xla.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: PyTorch on XLA Devices
3+
title_prefix: PyTorch
4+
title_suffix: on XLA Devices
5+
summary: TPU와 같은 XLA 장치에서 PyTorch를 실행하기 위한 패키지입니다. torch_xla 패키지를 통해 이러한 장치에서 모델을 실행하는 방법을 설명하며, 대규모 분산 훈련과 추론에 최적화된 성능을 제공합니다.
6+
link: https://pytorch.org/xla/
7+
order: 13
8+
category: hardware_acceleration
9+
---

_domains/tensordict.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: TensorDict
3+
title_prefix: tensor
4+
title_suffix: dict
5+
summary: 텐서들의 딕셔너리 같은 클래스로, 배치 연산과 슬라이싱과 같은 배열 조작을 단순화합니다. 텐서 값들에 대한 빠른 조작과 추상화를 제공하여, 강화학습과 같은 복잡한 텐서 작업을 효율적으로 처리할 수 있습니다.
6+
link: https://pytorch.org/tensordict/
7+
order: 12
8+
category: tensor_operations
9+
---

_domains/torcharrow.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: TorchArrow
3+
title_prefix: torch
4+
title_suffix: arrow
5+
summary: 데이터 전처리를 위한, torch.Tensor와 유사한 Python DataFrame 라이브러리입니다. 여러 실행 런타임을 지원하며 Arrow를 공통 형식으로 사용하여 효율적인 데이터 처리와 분석 기능을 제공합니다.
6+
link: https://pytorch.org/torcharrow/
7+
order: 14
8+
category: data_preprocessing
9+
---

_domains/torchaudio.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: TorchAudio
3+
title_prefix: torch
4+
title_suffix: audio
5+
summary: PyTorch를 사용한 오디오 및 신호 처리를 위한 라이브러리입니다. I/O, 신호 및 데이터 처리 함수, 데이터셋, 모델 구현 및 애플리케이션 구성요소를 제공합니다. 음성 인식, 음성 합성, 오디오 분류 등의 작업을 지원합니다.
6+
link: https://pytorch.org/audio/
7+
order: 2
8+
category: audio
9+
---

_domains/torchcodec.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: TorchCodec
3+
title_prefix: torch
4+
title_suffix: Codec
5+
summary: 빠른 미디어 디코딩 및 인코딩을 위한 PyTorch 라이브러리입니다. PyTorch 모델에서 오디오와 비디오를 실행할 때, torchcodec은 권장되는 방법으로 오디오와 비디오 파일을 데이터로 변환하는 기능을 제공합니다.
6+
link: https://pytorch.org/torchcodec/
7+
order: 11
8+
category: media_processing
9+
---

_domains/torchdata.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: TorchData
3+
title_prefix: torch
4+
title_suffix: data
5+
summary: 유연하고 성능이 뛰어난 데이터 파이프라인을 쉽게 구축할 수 있는 리더들의 베타 라이브러리입니다. 모듈형 데이터 로딩 프리미티브들로 구성되어, 다양한 사용 사례에 대해 재사용 가능한 구성 요소들을 제공합니다.
6+
link: https://pytorch.org/data/
7+
order: 4
8+
category: data
9+
---

0 commit comments

Comments
 (0)