Skip to content

Commit 59959d2

Browse files
9bowTaeyoung96hyoyoung
authored
운영진 소개 추가 (#22) (#23)
* 운영진 소개 추가 (#22) * 중복 이미지 삭제 * Add linkedin links and fix typo * change a image file * add a facebook link * change changed image file Co-authored-by: Tae Young Kim <tyoung96@yonsei.ac.kr> Co-authored-by: Hyoyoung CHANG <hyoyoung@gmail.com>
1 parent f06c833 commit 59959d2

25 files changed

+290
-27
lines changed

_about/pytorch.md

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,21 @@ title: 파이토치(PyTorch) 소개
33
order: 1
44
snippet: >
55
```python
6+
# import torch
67
import torch
78
8-
class MyModule(torch.nn.Module):
9-
def __init__(self, N, M):
10-
super(MyModule, self).__init__()
11-
self.weight = torch.nn.Parameter(torch.rand(N, M))
9+
# load model
10+
model = torch.hub.load('datvuthanh/hybridnets', 'hybridnets', pretrained=True)
1211
13-
def forward(self, input):
14-
if input.sum() > 0:
15-
output = self.weight.mv(input)
16-
else:
17-
output = self.weight + input
18-
return output
19-
20-
my_script_module = torch.jit.script(MyModule(3, 4))
21-
my_script_module.save("my_script_module.pt")
12+
#inference
13+
img = torch.randn(1, 3, 640, 384)
14+
features, regression, classification, anchors, segmentation = model(img)
2215
```
2316
2417
---
2518

26-
PyTorch(파이토치)는 연구용 프로토타입부터 상용 제품까지 빠르게 만들 수 있는 오픈 소스 머신러닝 프레임워크입니다.<br /><br />
19+
PyTorch(파이토치)는 FAIR(Facebook AI Research)에서 만든 연구용 프로토타입부터 상용 제품까지 빠르게 만들 수 있는 오픈 소스 머신러닝 프레임워크입니다.<br />
2720

28-
PyTorch는 사용자 친화적인 프론트엔드(front-end)와 분산 학습, 다양한 도구와 라이브러리를 통해 빠르고 유연한 실험 및 효과적인 상용화를 가능하게 합니다. <br /><br />
21+
PyTorch는 사용자 친화적인 프론트엔드(front-end)와 분산 학습, 다양한 도구와 라이브러리를 통해 빠르고 유연한 실험 및 효과적인 상용화를 가능하게 합니다. <br />
2922

30-
PyTorch에 대한 더 자세한 소개는 <a href="https://pytorch.org/" target="_blank">공식 홈페이지(영어)</a> 및 <a href="https://github.com/pytorch/pytorch" target="_blank">공식 저장소(영어)</a>에서 확인하실 수 있습니다.
23+
PyTorch에 대한 더 자세한 소개는 <a href="{{ site.external_urls.org_www }}">공식 홈페이지</a>에서 확인하실 수 있습니다.

_about/website.md

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,28 @@ title: 파이토치 한국 사용자 모임 소개
33
order: 2
44
snippet: >
55
```python
6-
import torch.distributed as dist
7-
from torch.nn.parallel import DistributedDataParallel
6+
import torch
87
9-
dist.init_process_group(backend='gloo')
10-
model = DistributedDataParallel(model)
8+
class MyModule(torch.nn.Module):
9+
def __init__(self, N, M):
10+
super(MyModule, self).__init__()
11+
self.weight = torch.nn.Parameter(torch.rand(N, M))
12+
13+
def forward(self, input):
14+
if input.sum() > 0:
15+
output = self.weight.mv(input)
16+
else:
17+
output = self.weight + input
18+
return output
19+
20+
my_script_module = torch.jit.script(MyModule(3, 4))
21+
my_script_module.save("my_script_module.pt")
1122
```
1223
1324
---
1425

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

17-
PyTorch를 학습하고 사용하는 PyTorch 한국 사용자들이 시작한 사용자 커뮤니티로, 한국어를 사용하시는 많은 분들께 PyTorch를 소개하고 함께 배우며 성장하는 것을 목표로 하고 있습니다.<br />
28+
PyTorch를 학습하고 사용하는 한국 사용자들이 시작한 사용자 커뮤니티로, 한국어를 사용하시는 많은 분들께 PyTorch를 소개하고 함께 배우며 성장하는 것을 목표로 합니다.<br />
1829

19-
이 홈페이지 또는 튜토리얼에 개선이 필요한 부분을 발견하셨다면 <a href="https://github.com/9bow/PyTorchKR" target="_blank">홈페이지 저장소</a> 또는 <a href="https://github.com/9bow/PyTorch-tutorials-kr" target="_blank">튜토리얼 저장소</a>에 이슈 또는 PR을 남겨주세요.
30+
PyTorch를 사용하며 얻은 유용한 정보를 공유하고 싶으시거나 다른 사용자와 소통하고 싶으시다면 <a href="{{ site.external_urls.site_community }}">커뮤니티 공간</a>에 방문해주세요!

_coc

_config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,18 @@ markdown: kramdown
3838
highlighter: rouge
3939
collections:
4040
about:
41-
output: true
41+
output: false
4242
get_started:
4343
output: true
4444
hub:
4545
output: true
4646
permalink: /hub/:title/
47+
maintainers:
48+
output: false
4749
resources:
4850
output: false
4951
features:
50-
output: true
52+
output: false
5153
news:
5254
output: true
55+
permalink: /news/:title/

_includes/head.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@
1616
<script src="{{ site.baseurl }}/assets/vendor/popper.min.js"></script>
1717
<script src="{{ site.baseurl }}/assets/vendor/bootstrap.min.js"></script>
1818
<script src="{{ site.baseurl }}/assets/vendor/anchor.min.js"></script>
19+
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
1920
</head>

_maintainers/9bow.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
github: 9bow
3+
name: 박정환
4+
title: Lead Maintainer
5+
team: CoC, PyTorchKorea
6+
link_linkedin:
7+
link_twitter:
8+
link_facebook:
9+
link_instagram:
10+
---

_maintainers/adonisues.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
github: adonisues
3+
name: 황성수
4+
title: Maintainer
5+
team: Advisory
6+
link_linkedin:
7+
link_twitter:
8+
link_facebook:
9+
link_instagram:
10+
---

_maintainers/bongmo.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
github: bongmo
3+
name: 김봉모
4+
title: Maintainer
5+
team: Advisory
6+
link_linkedin:
7+
link_twitter:
8+
link_facebook:
9+
link_instagram:
10+
---

_maintainers/codingbowoo.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
github: codingbowoo
3+
name: 장보우
4+
title: Maintainer
5+
team: CoC, hub-kr, discuss
6+
link_linkedin: https://www.linkedin.com/in/jangbowoo/
7+
link_twitter:
8+
link_facebook: https://www.facebook.com/catbowoo
9+
link_instagram:
10+
---

_maintainers/creduo.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
github: creduo
3+
name: 박주혁
4+
title: Inactive Maintainer
5+
team: Alumni
6+
link_linkedin: https://www.linkedin.com/in/juhyukpark/
7+
link_twitter:
8+
link_facebook: https://www.facebook.com/funderbar
9+
link_instagram:
10+
---

0 commit comments

Comments
 (0)