8000 DL(1) 작성중 · mioscode/mioscode.github.io@964b2e7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 964b2e7

Browse files
author
somee.han
committed
DL(1) 작성중
1 parent 1dcdd98 commit 964b2e7

17 files changed

+70
-173
lines changed

_pages/category-archive.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: archive
3+
permalink: /categories/
4+
title: "Posts by Category"
5+
author_profile: true
6+
---
7+
{% include group-by-array collection=site.posts field="categories" %}
8+
{% for category in group_names %}
9+
{% assign posts = group_items[forloop.index0] %}
10+
<h2 id="{{ category | slugify }}" class="archive__subtitle">{{ category }}</h2>
11+
{% for post in posts %}
12+
{% include archive-single.html %}
13+
{% endfor %}
14+
{% endfor %}
File renamed without changes.

_pages/tag-archive.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: archive
3+
permalink: /tags/
4+
title: "Posts by Tag"
5+
author_profile: true
6+
---
7+
8+
{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
9+
<!-- site_tags: {{ site_tags }} -->
10+
{% assign tag_words = site_tags | split:',' | sort %}
11+
<!-- tag_words: {{ tag_words }} -->
12+
13+
<div id="tags">
14+
<ul class="tag-box inline">
15+
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
16+
{% capture this_word %}{{ tag_words[item] | strip_newlines }}{% endcapture %}
17+
<li< 57AE /span>><a href="#{{ this_word | cgi_escape }}">{{ this_word }} <span>{{ site.tags[this_word].size }}</span></a></li>
18+
{% endunless %}{% endfor %}
19+
</ul>
20+
21+
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
22+
{% capture this_word %}{{ tag_words[item] | strip_newlines }}{% endcapture %}
23+
<h2 id="{{ this_word | cgi_escape }}">{{ this_word }}</h2>
24+
<ul class="posts">
25+
{% for post in site.tags[this_word] %}{% if post.title != null %}
26+
<li itemscope>
27+
<span class="entry-date">
28+
<time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%b %d, %Y" }}</time>
29+
</span>
30+
<a href="{{ post.url }}">{{ post.title }}</a>
31+
</li>
32+
{% endif %}{% endfor %}
33+
</ul>
34+
{% endunless %}{% endfor %}
35+
</div>
File renamed without changes.
File renamed without changes.

_posts/2019-11-14-DL(1).md

Lines changed: 0 additions & 114 deletions
This file was deleted.

_site/feed.xml

Lines changed: 11 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.8.5">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2019-11-14T18:18:40+09:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">MIOS Code</title><subtitle>MIOS Codes and Thinks</subtitle><author><name>MIOS</name><email>ijanamilot@gmail.com</email></author><entry><title type="html">딥러닝(1) - 개요, 퍼셉트론</title><link href="http://localhost:4000/deep%20learning/2019/11/14/DL(1)/" rel="alternate" type="text/html" title="딥러닝(1) - 개요, 퍼셉트론" /><published>2019-11-14T00:00:00+09:00</published><updated>2019-11-14T00:00:00+09:00</updated><id>http://localhost:4000/deep%20learning/2019/11/14/DL(1)</id><content type="html" xml:base="http://localhost:4000/deep%20learning/2019/11/14/DL(1)/">&lt;ul id=&quot;markdown-toc&quot;&gt;
2-
&lt;li&gt;&lt;a href=&quot;#1-ai-dl-ml--neural-network&quot; id=&quot;markdown-toc-1-ai-dl-ml--neural-network&quot;&gt;1. AI, DL, ML … Neural Network&lt;/a&gt; &lt;ul&gt;
3-
&lt;li&gt;&lt;a href=&quot;#인공지능ai의-역사&quot; id=&quot;markdown-toc-인공지능ai의-역사&quot;&gt;인공지능(AI)의 역사&lt;/a&gt;&lt;/li&gt;
4-
&lt;li&gt;&lt;a href=&quot;#deep-learning-machine-learning&quot; id=&quot;markdown-toc-deep-learning-machine-learning&quot;&gt;Deep Learning (Machine Learning)&lt;/a&gt;&lt;/li&gt;
5-
&lt;/ul&gt;
6-
&lt;/li&gt;
7-
&lt;li&gt;&lt;a href=&quot;#2-perceptron&quot; id=&quot;markdown-toc-2-perceptron&quot;&gt;2. Perceptron&lt;/a&gt; &lt;ul&gt;
1+
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.8.5">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2019-11-14T19:46:22+09:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">MIOS Code</title><subtitle>MIOS Codes and Thinks</subtitle><author><name>MIOS</name><email>ijanamilot@gmail.com</email></author><entry><title type="html">(DL) MySQL Dump ERROR</title><link href="http://localhost:4000/mysql%20workbench/2019/11/14/DL(1)-perceptron/" rel="alternate" type="text/html" title="(DL) MySQL Dump ERROR" /><published>2019-11-14T00:00:00+09:00</published><updated>2019-11-14T00:00:00+09:00</updated><id>http://localhost:4000/mysql%20workbench/2019/11/14/DL(1)-perceptron</id><content type="html" xml:base="http://localhost:4000/mysql%20workbench/2019/11/14/DL(1)-perceptron/">&lt;ul id=&quot;markdown-toc&quot;&gt;
2+
&lt;li&gt;&lt;a href=&quot;#1-퍼셉트론&quot; id=&quot;markdown-toc-1-퍼셉트론&quot;&gt;1. 퍼셉트론&lt;/a&gt; &lt;ul&gt;
83
&lt;li&gt;&lt;a href=&quot;#개념&quot; id=&quot;markdown-toc-개념&quot;&gt;개념&lt;/a&gt;&lt;/li&gt;
94
&lt;li&gt;&lt;a href=&quot;#학습방법&quot; id=&quot;markdown-toc-학습방법&quot;&gt;학습방법&lt;/a&gt;&lt;/li&gt;
105
&lt;li&gt;&lt;a href=&quot;#선형분류&quot; id=&quot;markdown-toc-선형분류&quot;&gt;선형분류&lt;/a&gt;&lt;/li&gt;
@@ -24,55 +19,21 @@
2419
&lt;/li&gt;
2520
&lt;/ul&gt;
2621
&lt;/li&gt;
27-
&lt;li&gt;&lt;a href=&quot;#오차-역전파-error-backpropagatin&quot; id=&quot;markdown-toc-오차-역전파-error-backpropagatin&quot;&gt;오차 역전파 (Error Backpropagatin)&lt;/a&gt; &lt;ul&gt;
28-
&lt;li&gt;&lt;a href=&quot;#reference&quot; id=&quot;markdown-toc-reference&quot;&gt;Reference&lt;/a&gt;&lt;/li&gt;
29-
&lt;/ul&gt;
30-
&lt;/li&gt;
22+
&lt;li&gt;&lt;a href=&quot;#오차-역전파-error-backpropagatin&quot; id=&quot;markdown-toc-오차-역전파-error-backpropagatin&quot;&gt;오차 역전파 (Error Backpropagatin)&lt;/a&gt;&lt;/li&gt;
3123
&lt;/ul&gt;
3224

33-
&lt;h1 id=&quot;1-ai-dl-ml--neural-network&quot;&gt;1. AI, DL, ML … Neural Network&lt;/h1&gt;
34-
&lt;h2 id=&quot;인공지능ai의-역사&quot;&gt;인공지능(AI)의 역사&lt;/h2&gt;
35-
&lt;ul&gt;
36-
&lt;li&gt;1943년: 최초 신경망 모델 제안&lt;/li&gt;
37-
&lt;li&gt;1950년: 앨런 튜링이 튜링 테스트 제안&lt;/li&gt;
38-
&lt;li&gt;(첫 번째 AI 붐) 1950년대 후반 ~ 1970년대 전반
39-
&lt;ul&gt;
40-
&lt;li&gt;1956년 : 미국 다트머스의 학회에서 AI 이란 용어 처음 사용&lt;/li&gt;
41-
&lt;li&gt;1957년 : 코넬 항공 연구소 프랑크 로젠이 Perceptron 고안&lt;/li&gt;
42-
&lt;/ul&gt;
43-
&lt;/li&gt;
44-
&lt;li&gt;(두 번째 AI 붐) 1980년대: 주로 컴퓨터가 자율적으로 배우고 결정하는 종류가 아닌 인간으로부터 지식을 얻음&lt;/li&gt;
45-
&lt;li&gt;1990년대: 세계 체스 챔피언을 물리 친 AI&lt;/li&gt;
46-
&lt;li&gt;(세 번째 AI 붐) 2010년대: 딥 러닝 (머신 러닝)이라는 새로운 기술이 각광&lt;/li&gt;
47-
&lt;/ul&gt;
48-
&lt;center&gt;&lt;img src=&quot;https://mioscode.github.io/assets/images/history.jpg&quot; width=&quot;80%&quot; /&gt;&lt;/center&gt;
49-
50-
&lt;h2 id=&quot;deep-learning-machine-learning&quot;&gt;Deep Learning (Machine Learning)&lt;/h2&gt;
51-
&lt;ul&gt;
52-
&lt;li&gt;딥 러닝은 최신 인공 신경망(Artificial neural network) 기술로 인간 두뇌의 메커니즘을 시뮬레이션&lt;/li&gt;
53-
&lt;li&gt;인간의 뇌는 정보를 전달하기 위해 뉴런(neuron)과 뉴런들을 연결하는 시냅스(synapse)로 구성&lt;/li&gt;
54-
&lt;li&gt;인공 신경망(또는 단순히 신경망이라고 함)은 이러한 뉴런과 시냅스를 모델링&lt;/li&gt;
55-
&lt;li&gt;이 모델은 두 번째 AI 붐 중에 적극적으로 연구되었지만 레이어 매우 작았고, 이후 기술 발전으로 인해 대규모 네트워크로 확장되어 컴퓨터가 심층 학습을 실행할 수 있게됨&lt;/li&gt;
56-
&lt;/ul&gt;
57-
&lt;center&gt;&lt;img src=&quot;https://mioscode.github.io/assets/images/neural_network.jpg&quot; width=&quot;80%&quot; /&gt;&lt;/center&gt;
58-
59-
&lt;h1 id=&quot;2-perceptron&quot;&gt;2. Perceptron&lt;/h1&gt;
25+
&lt;h1 id=&quot;1-퍼셉트론&quot;&gt;1. 퍼셉트론&lt;/h1&gt;
6026

6127
&lt;h2 id=&quot;개념&quot;&gt;개념&lt;/h2&gt;
28+
&lt;p&gt;&lt;img src=&quot;/Users/somi.han/Documents/Deep%20Learning/lecture-29-convolutional-neural-networks-computer-vision-spring2015-9-638.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
29+
6230
&lt;ul&gt;
63-
&lt;li&gt;1957년에 코넬 항공 연구소(Cornell Aeronautical Lab)의 프랑크 로젠블라트(Frank Rosenblatt)에 의해 고안&lt;/li&gt;
64-
&lt;li&gt;1957년, Rosenblatt이 뉴런(neuron)을 모방 하여 고안&lt;/li&gt;
65-
&lt;li&gt;뉴런: 특정 자극(impulse) 이 있다면 그 자극이 어느 역치(threshold) 이상이여야 반응(activation)
66-
&lt;ul&gt;
67-
&lt;li&gt;활동전위(action potential)가 축삭(axon)을 따라 내려가면서 세포막 안팎의 극성이 변화 -&amp;gt; 다른 뉴런에서 온 신호에 반응하여 막이 역치(threshold) 전위에 도달하면 Na+ 및 K+ 개폐 이온 채널이 여닫힘 -&amp;gt; 활동전위가 시작될 때 Na+ 채널이 열리고 Na+가 축삭 안으로 들어와 탈분극(Depolarization), 재분극은 K+ 채널이 열리고 K+가 축삭 밖으로 나갈 때 일어남 -&amp;gt; 채널의 개폐로 세포 안팎 극성이 변화 -&amp;gt; 신경 자극은 한 방향으로만 이동하여 축삭 말단(axon ending)에서 다른 뉴런으로 신호를 전달&lt;/li&gt;
68-
&lt;/ul&gt;
69-
&lt;center&gt;&lt;img src=&quot;https://mioscode.github.io/assets/images/action_potential.gif&quot; width=&quot;80%&quot; /&gt;&lt;/center&gt;
70-
&lt;center&gt;&lt;img src=&quot;https://mioscode.github.io/assets/images/action_potential.png&quot; width=&quot;80%&quot; /&gt;&lt;/center&gt;
71-
(출처: 위키)
72-
&lt;/li&gt;
73-
&lt;li&gt;퍼셉트론: 입력(input) 신호의 총합이 정해진 임계값($\theta$) 넘었을 때 $1$을 출력(output), 넘지 못하면 $0$ 또는 $-1$ 출력&lt;/li&gt;
31+
&lt;li&gt;1957년 고안, neuron 본뜸&lt;/li&gt;
32+
&lt;li&gt;입력 신호의 총합이 정해진 임계값(세타θ, neuron: threshold) 넘었을 때 1을 출력(neuron: activation), 넘지 못하면 0 또는 -1 출력&lt;/li&gt;
7433
&lt;/ul&gt;
7534

35+
&lt;p&gt;&lt;img src=&quot;/Users/somi.han/Documents/Deep%20Learning/lecture-29-convolutional-neural-networks-computer-vision-spring2015-9-638.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
36+
7637
&lt;p&gt;각 입력신호에 고유한 weight 부여되며 기계학습은 이 weight(입력을 조절하니 매개변수로도 볼 수 있음)의 값을 정하는 작업
7738
&lt;img src=&quot;/Users/somi.han/Documents/Deep%20Learning/Perceptron_3.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
7839

@@ -171,12 +132,7 @@ AND, OR, NAND, XOR Gate 다음 단계&lt;/p&gt;
171132
&lt;li&gt;epoch를 늘릴 수록 가중치가 계속 업데이트(학습)되면서 점점 오차가 줄어나가는 방법&lt;/li&gt;
172133
&lt;/ul&gt;
173134

174-
&lt;p&gt;&lt;img src=&quot;/Users/somi.han/Documents/Deep%20Learning/997C7A3359EEF5CA1F.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
175-
176-
&lt;h2 id=&quot;reference&quot;&gt;Reference&lt;/h2&gt;
177-
&lt;p&gt;https://journal.jp.fujitsu.com/en/2016/02/09/01/
178-
https://sacko.tistory.com/10?category=632408
179-
https://www.neuraldesigner.com/blog/perceptron-the-main-component-of-neural-networks&lt;/p&gt;</content><author><name>MIOS</name><email>ijanamilot@gmail.com</email></author><category term="Perceptron" /><category term="Deep Learning" /><summary type="html"></summary></entry><entry><title type="html">(MySQL Workbench) MySQL Dump ERROR</title><link href="http://localhost:4000/mysql%20workbench/2019/11/12/mysqlworkbench-mysqldump-error/" rel="alternate" type="text/html" title="(MySQL Workbench) MySQL Dump ERROR" /><published>2019-11-12T00:00:00+09:00</published><updated>2019-11-12T00:00:00+09:00</updated><id>http://localhost:4000/mysql%20workbench/2019/11/12/mysqlworkbench-mysqldump-error</id><content type="html" xml:base="http://localhost:4000/mysql%20workbench/2019/11/12/mysqlworkbench-mysqldump-error/">&lt;h1 id=&quot;mysql-workbench---mysql-dump-error&quot;&gt;MySQL Workbench - MySQL Dump ERROR&lt;/h1&gt;
135+
&lt;p&gt;&lt;img src=&quot;/Users/somi.han/Documents/Deep%20Learning/997C7A3359EEF5CA1F.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</content><author><name>MIOS</name><email>ijanamilot@gmail.com</email></author><category term="MySQL" /><category term="mysqldump" /><summary type="html"></summary></entry><entry><title type="html">(MySQL Workbench) MySQL Dump ERROR</title><link href="http://localhost:4000/mysql%20workbench/2019/11/12/mysqlworkbench-mysqldump-error/" rel="alternate" type="text/html" title="(MySQL Workbench) MySQL Dump ERROR" /><published>2019-11-12T00:00:00+09:00</published><updated>2019-11-12T00:00:00+09:00</updated><id>http://localhost:4000/mysql%20workbench/2019/11/12/mysqlworkbench-mysqldump-error</id><content type="html" xml:base="http://localhost:4000/mysql%20workbench/2019/11/12/mysqlworkbench-mysqldump-error/">&lt;h1 id=&quot;mysql-workbench---mysql-dump-error&quot;&gt;MySQL Workbench - MySQL Dump ERROR&lt;/h1&gt;
180136
&lt;h2 id=&quot;내용&quot;&gt;내용&lt;/h2&gt;
181137
&lt;p&gt;MySQL Workbench에서 Data Export 시,
182138
Unknown table ‘column_statistics’ in information_schema (1109) Error 나오면서 실패&lt;/p&gt;

_site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ <h3 class="archive__subtitle">최근 포스트</h3>
314314

315315
<h2 class="archive__item-title" itemprop="headline">
316316

317-
<a href="/deep%20learning/2019/11/14/DL(1)/" rel="permalink">딥러닝(1) - 개요, 퍼셉트론
317+
<a href="/mysql%20workbench/2019/11/14/DL(1)-perceptron/" rel="permalink">(DL) MySQL Dump ERROR
318318
</a>
319319

320320
</h2>

_site/sitemap.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</url>
77
<url>
88
<loc>http://localhost:4000/chatter/what-is-this-place-chatter/</loc>
9-
<lastmod>2019-11-14T18:18:40+09:00</lastmod>
9+
<lastmod>2019-11-14T19:46:22+09:00</lastmod>
1010
</url>
1111
<url>
1212
<loc>http://localhost:4000/jekyll/2019/03/26/github-pages-blog-used-jekyll/</loc>
@@ -105,7 +105,7 @@
105105
<lastmod>2019-11-12T00:00:00+09:00</lastmod>
106106
</url>
107107
<url>
108-
<loc>http://localhost:4000/deep%20learning/2019/11/14/DL(1)/</loc>
108+
<loc>http://localhost:4000/mysql%20workbench/2019/11/14/DL(1)-perceptron/</loc>
109109
<lastmod>2019-11-14T00:00:00+09:00</lastmod>
110110
</url>
111111
<url>
@@ -115,6 +115,9 @@
115115
<loc>http://localhost:4000/categories/</loc>
116116
</url>
117117
<url>
118+
<loc>http://localhost:4000/categories/</loc>
119+
</url>
120+
<url>
118121
<loc>http://localhost:4000/chatter/</loc>
119122
</url>
120123
<url>
@@ -127,6 +130,9 @@
127130
<loc>http://localhost:4000/tags/</loc>
128131
</url>
129132
<url>
133+
<loc>http://localhost:4000/tags/</loc>
134+
</url>
135+
<url>
130136
<loc>http://localhost:4000/page2/</loc>
131137
</url>
132138
<url>

assets/images/machine_learning.jpg

46.9 KB
Loading
79.9 KB
Loading

assets/images/perceptron_2.png

20.1 KB
Loading

assets/images/perceptron_3.png

83.6 KB
Loading

assets/images/perceptron_4.png

6.52 KB
Loading

assets/images/perceptron_example.png

63 KB
Loading

assets/images/xor.gif

2.36 KB
Loading

0 commit comments

Comments
 (0)
0