Skip to content

Commit 7a98c50

Browse files
committed
add new image ch1-4 and update docs
1 parent b158057 commit 7a98c50

17 files changed

+522
-32
lines changed
3.57 KB
Binary file not shown.
878 Bytes
Binary file not shown.

_build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: cc16d5fb26f2501f64eb0771550e6fdc
3+
config: 9ba8b9c302242811fe16e23307fd0aa8
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

_build/html/_sources/docs/index.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
1-
# 가짜연구소 튜토리얼 책 (가제)
1+
# 파이토치를 활용한 딥러닝 튜토리얼 (Deep Learning Tutorials using PyTorch)
22

3-
본 책은 가짜연구소 AI School 튜토리얼 팀에 의해 제작 되었습니다. (제작중)
3+
해당 자료는 가짜연구소 AI School 튜토리얼 팀에 의해 제작 되었습니다.
44

55
가짜연구소는 진짜 연구소는 아니지만 **머신러닝 연구를 중심**으로 모인 커뮤니티입니다. 오픈(open)의 가치를 추구하는 좋은 영향력을 끼칠 수 있는 그룹을 만들고자 합니다!
66

77
**비영리적**으로 **머신러닝/딥러닝, 케글** 관련한 **밋업**, **스터디**, **코드 공유**, **유튜브**, **해커톤****각종 이벤트**를 통해 공유의 가치를 형성하고자 합니다.
88

99

1010

11-
제작
11+
**제작**
1212

13-
객체 탐지: 튜토리얼 팀 1기 (강민지, 김호열, 박준형, 안성진)
13+
- 객체 탐지: 튜토리얼 팀 1기 ([강민지](https://github.com/mmminji), [김호열](https://github.com/elibooklover), [박준형](https://github.com/oopsys6), [안성진](https://www.linkedin.com/in/sungjin-ahn/))
1414

15-
시계열 분석: 튜토리얼 팀 1기 (강민지, 김호열, 박준형, 안성진)
15+
- 시계열 분석: 튜토리얼 팀 1기 ([강민지](https://github.com/mmminji), [김호열](https://github.com/elibooklover), [박준형](https://github.com/oopsys6), [안성진](https://www.linkedin.com/in/sungjin-ahn/))
1616

17-
17+
18+
19+
**가짜연구소**
20+
21+
- [홈페이지](https://pseudo-lab.com/), [Github](https://github.com/Pseudo-Lab), [Facebook](https://www.facebook.com/groups/pseudolab/), [Linkedin](https://www.linkedin.com/company/pseudolab/?originalSubdomain=kr)
22+
23+
1824

1925

2026

_build/html/docs/index.html

Lines changed: 73 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<head>
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>가짜연구소 튜토리얼 책 (가제) &#8212; PseudoLab Tutorial Book</title>
8+
<title>파이토치를 활용한 딥러닝 튜토리얼 (Deep Learning Tutorials using PyTorch) &#8212; PseudoLab Tutorial Book</title>
99

1010
<link rel="stylesheet" href="../_static/css/index.73d71520a4ca3b99cfee5594769eaaae.css">
1111

@@ -44,6 +44,40 @@
4444
<script src="../_static/togglebutton.js"></script>
4545
<script src="../_static/clipboard.min.js"></script>
4646
<script src="../_static/copybutton.js"></script>
47+
<script kind="utterances">
48+
49+
var commentsRunWhenDOMLoaded = cb => {
50+
if (document.readyState != 'loading') {
51+
cb()
52+
} else if (document.addEventListener) {
53+
document.addEventListener('DOMContentLoaded', cb)
54+
} else {
55+
document.attachEvent('onreadystatechange', function() {
56+
if (document.readyState == 'complete') cb()
57+
})
58+
}
59+
}
60+
61+
var addUtterances = () => {
62+
var script = document.createElement("script");
63+
script.type = "text/javascript";
64+
script.src = "https://utteranc.es/client.js";
65+
script.async = "async";
66+
67+
script.setAttribute("repo", "Pseudo-Lab/Tutorial-Book");
68+
script.setAttribute("issue-term", "pathname");
69+
script.setAttribute("theme", "github-light");
70+
script.setAttribute("label", "💬 comment");
71+
script.setAttribute("crossorigin", "anonymous");
72+
73+
sections = document.querySelectorAll("div.section");
74+
if (sections !== null) {
75+
section = sections[sections.length-1];
76+
section.appendChild(script);
77+
}
78+
}
79+
commentsRunWhenDOMLoaded(addUtterances);
80+
</script>
4781
<script >var togglebuttonSelector = '.toggle, .admonition.dropdown, .tag_hide_input div.cell_input, .tag_hide-input div.cell_input, .tag_hide_output div.cell_output, .tag_hide-output div.cell_output, .tag_hide_cell.cell, .tag_hide-cell.cell';</script>
4882
<script src="../_static/sphinx-book-theme.d31b09fe5c1d09cb49b26a786de4a05d.js"></script>
4983
<script async="async" src="https://unpkg.com/thebelab@latest/lib/index.js"></script>
@@ -53,6 +87,7 @@
5387
const thebe_selector_output = ".output"
5488
</script>
5589
<script async="async" src="../_static/sphinx-thebe.js"></script>
90+
<link rel="shortcut icon" href="../_static/PseudoLab_logo.png"/>
5691
<link rel="index" title="Index" href="../genindex.html" />
5792
<link rel="search" title="Search" href="../search.html" />
5893
<link rel="next" title="1. 객체 탐지(Object Detection)" href="object_detection/Ch1%20Object%20Detection.html" />
@@ -85,7 +120,14 @@ <h1 class="site-logo" id="site-title">PseudoLab Tutorial Book</h1>
85120
<input type="search" class="form-control" name="q" id="search-input" placeholder="Search this book..." aria-label="Search this book..." autocomplete="off" >
86121
</form>
87122
<nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
88-
<p class="caption collapsible-parent">
123+
<ul class="nav sidenav_l1">
124+
<li class="toctree-l1 current active">
125+
<a class="reference internal" href="#">
126+
파이토치를 활용한 딥러닝 튜토리얼 (Deep Learning Tutorials using PyTorch)
127+
</a>
128+
</li>
129+
</ul>
130+
<p class="caption collapsible-parent">
89131
<span class="caption-text">
90132
객체 탐지(Object Detection)
91133
</span>
@@ -167,6 +209,22 @@ <h1 class="site-logo" id="site-title">PseudoLab Tutorial Book</h1>
167209

168210
<!-- Source interaction buttons -->
169211

212+
<div class="dropdown-buttons-trigger">
213+
<button id="dropdown-buttons-trigger" class="btn btn-secondary topbarbtn"
214+
aria-label="Connect with source repository"><i class="fab fa-github"></i></button>
215+
<div class="dropdown-buttons sourcebuttons">
216+
<a class="repository-button"
217+
href="https://github.com/Pseudo-Lab/Tutorial-Book"><button type="button" class="btn btn-secondary topbarbtn"
218+
data-toggle="tooltip" data-placement="left" title="Source repository"><i
219+
class="fab fa-github"></i>repository</button></a>
220+
<a class="issues-button"
221+
href="https://github.com/Pseudo-Lab/Tutorial-Book/issues/new?title=Issue%20on%20page%20%2Fdocs/index.html&body=Your%20issue%20content%20here."><button
222+
type="button" class="btn btn-secondary topbarbtn" data-toggle="tooltip" data-placement="left"
223+
title="Open an issue"><i class="fas fa-lightbulb"></i>open issue</button></a>
224+
225+
</div>
226+
</div>
227+
170228

171229
<!-- Full screen (wrap in <a> to have style consistency -->
172230
<a class="full-screen-button"><button type="button" class="btn btn-secondary topbarbtn" data-toggle="tooltip"
@@ -188,15 +246,21 @@ <h1 class="site-logo" id="site-title">PseudoLab Tutorial Book</h1>
188246

189247
<div>
190248

191-
<div class="section" id="id1">
192-
<h1>가짜연구소 튜토리얼 책 (가제)<a class="headerlink" href="#id1" title="Permalink to this headline"></a></h1>
193-
<p>본 책은 가짜연구소 AI School 튜토리얼 팀에 의해 제작 되었습니다. (제작중)</p>
249+
<div class="section" id="deep-learning-tutorials-using-pytorch">
250+
<h1>파이토치를 활용한 딥러닝 튜토리얼 (Deep Learning Tutorials using PyTorch)<a class="headerlink" href="#deep-learning-tutorials-using-pytorch" title="Permalink to this headline"></a></h1>
251+
<p>해당 자료는 가짜연구소 AI School 튜토리얼 팀에 의해 제작 되었습니다.</p>
194252
<p>가짜연구소는 진짜 연구소는 아니지만 <strong>머신러닝 연구를 중심</strong>으로 모인 커뮤니티입니다. 오픈(open)의 가치를 추구하는 좋은 영향력을 끼칠 수 있는 그룹을 만들고자 합니다!</p>
195253
<p><strong>비영리적</strong>으로 <strong>머신러닝/딥러닝, 케글</strong> 관련한 <strong>밋업</strong>, <strong>스터디</strong>, <strong>코드 공유</strong>, <strong>유튜브</strong>, <strong>해커톤</strong><strong>각종 이벤트</strong>를 통해 공유의 가치를 형성하고자 합니다.</p>
196-
<p>제작</p>
197-
<p>객체 탐지: 튜토리얼 팀 1기 (강민지, 김호열, 박준형, 안성진)</p>
198-
<p>시계열 분석: 튜토리얼 팀 1기 (강민지, 김호열, 박준형, 안성진)</p>
199-
<p>Email: <a class="reference external" href="mailto:pseudolab&#46;operator&#37;&#52;&#48;gmail&#46;com">pseudolab<span>&#46;</span>operator<span>&#64;</span>gmail<span>&#46;</span>com</a></p>
254+
<p><strong>제작</strong></p>
255+
<ul class="simple">
256+
<li><p>객체 탐지: 튜토리얼 팀 1기 (<a class="reference external" href="https://github.com/mmminji">강민지</a>, <a class="reference external" href="https://github.com/elibooklover">김호열</a>, <a class="reference external" href="https://github.com/oopsys6">박준형</a>, <a class="reference external" href="https://www.linkedin.com/in/sungjin-ahn/">안성진</a>)</p></li>
257+
<li><p>시계열 분석: 튜토리얼 팀 1기 (<a class="reference external" href="https://github.com/mmminji">강민지</a>, <a class="reference external" href="https://github.com/elibooklover">김호열</a>, <a class="reference external" href="https://github.com/oopsys6">박준형</a>, <a class="reference external" href="https://www.linkedin.com/in/sungjin-ahn/">안성진</a>)</p></li>
258+
</ul>
259+
<p><strong>가짜연구소</strong></p>
260+
<ul class="simple">
261+
<li><p><a class="reference external" href="https://pseudo-lab.com/">홈페이지</a>, <a class="reference external" href="https://github.com/Pseudo-Lab">Github</a>, <a class="reference external" href="https://www.facebook.com/groups/pseudolab/">Facebook</a>, <a class="reference external" href="https://www.linkedin.com/company/pseudolab/?originalSubdomain=kr">Linkedin</a></p></li>
262+
<li><p>문의: <a class="reference external" href="mailto:pseudolab&#46;operator&#37;&#52;&#48;gmail&#46;com">pseudolab<span>&#46;</span>operator<span>&#64;</span>gmail<span>&#46;</span>com</a></p></li>
263+
</ul>
200264
<div class="toctree-wrapper compound">
201265
</div>
202266
</div>

_build/html/docs/object_detection/Ch1 Object Detection.html

Lines changed: 61 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,40 @@
4444
<script src="../../_static/togglebutton.js"></script>
4545
<script src="../../_static/clipboard.min.js"></script>
4646
<script src="../../_static/copybutton.js"></script>
47+
<script kind="utterances">
48+
49+
var commentsRunWhenDOMLoaded = cb => {
50+
if (document.readyState != 'loading') {
51+
cb()
52+
} else if (document.addEventListener) {
53+
document.addEventListener('DOMContentLoaded', cb)
54+
} else {
55+
document.attachEvent('onreadystatechange', function() {
56+
if (document.readyState == 'complete') cb()
57+
})
58+
}
59+
}
60+
61+
var addUtterances = () => {
62+
var script = document.createElement("script");
63+
script.type = "text/javascript";
64+
script.src = "https://utteranc.es/client.js";
65+
script.async = "async";
66+
67+
script.setAttribute("repo", "Pseudo-Lab/Tutorial-Book");
68+
script.setAttribute("issue-term", "pathname");
69+
script.setAttribute("theme", "github-light");
70+
script.setAttribute("label", "💬 comment");
71+
script.setAttribute("crossorigin", "anonymous");
72+
73+
sections = document.querySelectorAll("div.section");
74+
if (sections !== null) {
75+
section = sections[sections.length-1];
76+
section.appendChild(script);
77+
}
78+
}
79+
commentsRunWhenDOMLoaded(addUtterances);
80+
</script>
4781
<script >var togglebuttonSelector = '.toggle, .admonition.dropdown, .tag_hide_input div.cell_input, .tag_hide-input div.cell_input, .tag_hide_output div.cell_output, .tag_hide-output div.cell_output, .tag_hide_cell.cell, .tag_hide-cell.cell';</script>
4882
<script src="../../_static/sphinx-book-theme.d31b09fe5c1d09cb49b26a786de4a05d.js"></script>
4983
<script async="async" src="https://unpkg.com/thebelab@latest/lib/index.js"></script>
@@ -53,10 +87,11 @@
5387
const thebe_selector_output = ".output"
5488
</script>
5589
<script async="async" src="../../_static/sphinx-thebe.js"></script>
90+
<link rel="shortcut icon" href="../../_static/PseudoLab_logo.png"/>
5691
<link rel="index" title="Index" href="../../genindex.html" />
5792
<link rel="search" title="Search" href="../../search.html" />
5893
<link rel="next" title="2. 데이터 탐색" href="Ch2%20%EB%8D%B0%EC%9D%B4%ED%84%B0%20%ED%83%90%EC%83%89.html" />
59-
<link rel="prev" title="가짜연구소 튜토리얼 책 (가제)" href="../index.html" />
94+
<link rel="prev" title="파이토치를 활용한 딥러닝 튜토리얼 (Deep Learning Tutorials using PyTorch)" href="../index.html" />
6095

6196
<meta name="viewport" content="width=device-width, initial-scale=1" />
6297
<meta name="docsearch:language" content="en" />
@@ -86,7 +121,14 @@ <h1 class="site-logo" id="site-title">PseudoLab Tutorial Book</h1>
86121
<input type="search" class="form-control" name="q" id="search-input" placeholder="Search this book..." aria-label="Search this book..." autocomplete="off" >
87122
</form>
88123
<nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
89-
<p class="caption collapsible-parent">
124+
<ul class="nav sidenav_l1">
125+
<li class="toctree-l1">
126+
<a class="reference internal" href="../index.html">
127+
파이토치를 활용한 딥러닝 튜토리얼 (Deep Learning Tutorials using PyTorch)
128+
</a>
129+
</li>
130+
</ul>
131+
<p class="caption collapsible-parent">
90132
<span class="caption-text">
91133
객체 탐지(Object Detection)
92134
</span>
@@ -168,6 +210,22 @@ <h1 class="site-logo" id="site-title">PseudoLab Tutorial Book</h1>
168210

169211
<!-- Source interaction buttons -->
170212

213+
<div class="dropdown-buttons-trigger">
214+
<button id="dropdown-buttons-trigger" class="btn btn-secondary topbarbtn"
215+
aria-label="Connect with source repository"><i class="fab fa-github"></i></button>
216+
<div class="dropdown-buttons sourcebuttons">
217+
<a class="repository-button"
218+
href="https://github.com/Pseudo-Lab/Tutorial-Book"><button type="button" class="btn btn-secondary topbarbtn"
219+
data-toggle="tooltip" data-placement="left" title="Source repository"><i
220+
class="fab fa-github"></i>repository</button></a>
221+
<a class="issues-button"
222+
href="https://github.com/Pseudo-Lab/Tutorial-Book/issues/new?title=Issue%20on%20page%20%2Fdocs/object_detection/Ch1 Object Detection.html&body=Your%20issue%20content%20here."><button
223+
type="button" class="btn btn-secondary topbarbtn" data-toggle="tooltip" data-placement="left"
224+
title="Open an issue"><i class="fas fa-lightbulb"></i>open issue</button></a>
225+
226+
</div>
227+
</div>
228+
171229

172230
<!-- Full screen (wrap in <a> to have style consistency -->
173231
<a class="full-screen-button"><button type="button" class="btn btn-secondary topbarbtn" data-toggle="tooltip"
@@ -414,7 +472,7 @@ <h3>1.3.6. RetinaNet<a class="headerlink" href="#retinanet" title="Permalink to
414472

415473
<div class='prev-next-bottom'>
416474

417-
<a class='left-prev' id="prev-link" href="../index.html" title="previous page">가짜연구소 튜토리얼 책 (가제)</a>
475+
<a class='left-prev' id="prev-link" href="../index.html" title="previous page">파이토치를 활용한 딥러닝 튜토리얼 (Deep Learning Tutorials using PyTorch)</a>
418476
<a class='right-next' id="next-link" href="Ch2%20%EB%8D%B0%EC%9D%B4%ED%84%B0%20%ED%83%90%EC%83%89.html" title="next page">2. 데이터 탐색</a>
419477

420478
</div>

_build/html/docs/object_detection/Ch2 데이터 탐색.html

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,40 @@
4444
<script src="../../_static/togglebutton.js"></script>
4545
<script src="../../_static/clipboard.min.js"></script>
4646
<script src="../../_static/copybutton.js"></script>
47+
<script kind="utterances">
48+
49+
var commentsRunWhenDOMLoaded = cb => {
50+
if (document.readyState != 'loading') {
51+
cb()
52+
} else if (document.addEventListener) {
53+
document.addEventListener('DOMContentLoaded', cb)
54+
} else {
55+
document.attachEvent('onreadystatechange', function() {
56+
if (document.readyState == 'complete') cb()
57+
})
58+
}
59+
}
60+
61+
var addUtterances = () => {
62+
var script = document.createElement("script");
63+
script.type = "text/javascript";
64+
script.src = "https://utteranc.es/client.js";
65+
script.async = "async";
66+
67+
script.setAttribute("repo", "Pseudo-Lab/Tutorial-Book");
68+
script.setAttribute("issue-term", "pathname");
69+
script.setAttribute("theme", "github-light");
70+
script.setAttribute("label", "💬 comment");
71+
script.setAttribute("crossorigin", "anonymous");
72+
73+
sections = document.querySelectorAll("div.section");
74+
if (sections !== null) {
75+
section = sections[sections.length-1];
76+
section.appendChild(script);
77+
}
78+
}
79+
commentsRunWhenDOMLoaded(addUtterances);
80+
</script>
4781
<script >var togglebuttonSelector = '.toggle, .admonition.dropdown, .tag_hide_input div.cell_input, .tag_hide-input div.cell_input, .tag_hide_output div.cell_output, .tag_hide-output div.cell_output, .tag_hide_cell.cell, .tag_hide-cell.cell';</script>
4882
<script src="../../_static/sphinx-book-theme.d31b09fe5c1d09cb49b26a786de4a05d.js"></script>
4983
<script async="async" src="https://unpkg.com/thebelab@latest/lib/index.js"></script>
@@ -53,6 +87,7 @@
5387
const thebe_selector_output = ".output"
5488
</script>
5589
<script async="async" src="../../_static/sphinx-thebe.js"></script>
90+
<link rel="shortcut icon" href="../../_static/PseudoLab_logo.png"/>
5691
<link rel="index" title="Index" href="../../genindex.html" />
5792
<link rel="search" title="Search" href="../../search.html" />
5893
<link rel="next" title="3. 데이터 전처리" href="Ch3%20%EB%8D%B0%EC%9D%B4%ED%84%B0%20%EC%A0%84%EC%B2%98%EB%A6%AC.html" />
@@ -86,7 +121,14 @@ <h1 class="site-logo" id="site-title">PseudoLab Tutorial Book</h1>
86121
<input type="search" class="form-control" name="q" id="search-input" placeholder="Search this book..." aria-label="Search this book..." autocomplete="off" >
87122
</form>
88123
<nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
89-
<p class="caption collapsible-parent">
124+
<ul class="nav sidenav_l1">
125+
<li class="toctree-l1">
126+
<a class="reference internal" href="../index.html">
127+
파이토치를 활용한 딥러닝 튜토리얼 (Deep Learning Tutorials using PyTorch)
128+
</a>
129+
</li>
130+
</ul>
131+
<p class="caption collapsible-parent">
90132
<span class="caption-text">
91133
객체 탐지(Object Detection)
92134
</span>
@@ -168,6 +210,22 @@ <h1 class="site-logo" id="site-title">PseudoLab Tutorial Book</h1>
168210

169211
<!-- Source interaction buttons -->
170212

213+
<div class="dropdown-buttons-trigger">
214+
<button id="dropdown-buttons-trigger" class="btn btn-secondary topbarbtn"
215+
aria-label="Connect with source repository"><i class="fab fa-github"></i></button>
216+
<div class="dropdown-buttons sourcebuttons">
217+
<a class="repository-button"
218+
href="https://github.com/Pseudo-Lab/Tutorial-Book"><button type="button" class="btn btn-secondary topbarbtn"
219+
data-toggle="tooltip" data-placement="left" title="Source repository"><i
220+
class="fab fa-github"></i>repository</button></a>
221+
<a class="issues-button"
222+
href="https://github.com/Pseudo-Lab/Tutorial-Book/issues/new?title=Issue%20on%20page%20%2Fdocs/object_detection/Ch2 데이터 탐색.html&body=Your%20issue%20content%20here."><button
223+
type="button" class="btn btn-secondary topbarbtn" data-toggle="tooltip" data-placement="left"
224+
title="Open an issue"><i class="fas fa-lightbulb"></i>open issue</button></a>
225+
226+
</div>
227+
</div>
228+
171229

172230
<!-- Full screen (wrap in <a> to have style consistency -->
173231
<a class="full-screen-button"><button type="button" class="btn btn-secondary topbarbtn" data-toggle="tooltip"

0 commit comments

Comments
 (0)