|
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)/"><ul id="markdown-toc"> |
2 |
| - <li><a href="#1-ai-dl-ml--neural-network" id="markdown-toc-1-ai-dl-ml--neural-network">1. AI, DL, ML … Neural Network</a> <ul> |
3 |
| - <li><a href="#인공지능ai의-역사" id="markdown-toc-인공지능ai의-역사">인공지능(AI)의 역사</a></li> |
4 |
| - <li><a href="#deep-learning-machine-learning" id="markdown-toc-deep-learning-machine-learning">Deep Learning (Machine Learning)</a></li> |
5 |
| - </ul> |
6 |
| - </li> |
7 |
| - <li><a href="#2-perceptron" id="markdown-toc-2-perceptron">2. Perceptron</a> <ul> |
| 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/"><ul id="markdown-toc"> |
| 2 | + <li><a href="
F438
span>#1-퍼셉트론" id="markdown-toc-1-퍼셉트론">1. 퍼셉트론</a> <ul> |
8 | 3 | <li><a href="#개념" id="markdown-toc-개념">개념</a></li>
|
9 | 4 | <li><a href="#학습방법" id="markdown-toc-학습방법">학습방법</a></li>
|
10 | 5 | <li><a href="#선형분류" id="markdown-toc-선형분류">선형분류</a></li>
|
|
24 | 19 | </li>
|
25 | 20 | </ul>
|
26 | 21 | </li>
|
27 |
| - <li><a href="#오차-역전파-error-backpropagatin" id="markdown-toc-오차-역전파-error-backpropagatin">오차 역전파 (Error Backpropagatin)</a> <ul> |
28 |
| - <li><a href="#reference" id="markdown-toc-reference">Reference</a></li> |
29 |
| - </ul> |
30 |
| - </li> |
| 22 | + <li><a href="#오차-역전파-error-backpropagatin" id="markdown-toc-오차-역전파-error-backpropagatin">오차 역전파 (Error Backpropagatin)</a></li> |
31 | 23 | </ul>
|
32 | 24 |
|
33 |
| -<h1 id="1-ai-dl-ml--neural-network">1. AI, DL, ML … Neural Network</h1> |
34 |
| -<h2 id="인공지능ai의-역사">인공지능(AI)의 역사</h2> |
35 |
| -<ul> |
36 |
| - <li>1943년: 최초 신경망 모델 제안</li> |
37 |
| - <li>1950년: 앨런 튜링이 튜링 테스트 제안</li> |
38 |
| - <li>(첫 번째 AI 붐) 1950년대 후반 ~ 1970년대 전반 |
39 |
| - <ul> |
40 |
| - <li>1956년 : 미국 다트머스의 학회에서 AI 이란 용어 처음 사용</li> |
41 |
| - <li>1957년 : 코넬 항공 연구소 프랑크 로젠이 Perceptron 고안</li> |
42 |
| - </ul> |
43 |
| - </li> |
44 |
| - <li>(두 번째 AI 붐) 1980년대: 주로 컴퓨터가 자율적으로 배우고 결정하는 종류가 아닌 인간으로부터 지식을 얻음</li> |
45 |
| - <li>1990년대: 세계 체스 챔피언을 물리 친 AI</li> |
46 |
| - <li>(세 번째 AI 붐) 2010년대: 딥 러닝 (머신 러닝)이라는 새로운 기술이 각광</li> |
47 |
| -</ul> |
48 |
| -<center><img src="https://mioscode.github.io/assets/images/history.jpg" width="80%" /></center> |
49 |
| - |
50 |
| -<h2 id="deep-learning-machine-learning">Deep Learning (Machine Learning)</h2> |
51 |
| -<ul> |
52 |
| - <li>딥 러닝은 최신 인공 신경망(Artificial neural network) 기술로 인간 두뇌의 메커니즘을 시뮬레이션</li> |
53 |
| - <li>인간의 뇌는 정보를 전달하기 위해 뉴런(neuron)과 뉴런들을 연결하는 시냅스(synapse)로 구성</li> |
54 |
| - <li>인공 신경망(또는 단순히 신경망이라고 함)은 이러한 뉴런과 시냅스를 모델링</li> |
55 |
| - <li>이 모델은 두 번째 AI 붐 중에 적극적으로 연구되었지만 레이어 매우 작았고, 이후 기술 발전으로 인해 대규모 네트워크로 확장되어 컴퓨터가 심층 학습을 실행할 수 있게됨</li> |
56 |
| -</ul> |
57 |
| -<center><img src="https://mioscode.github.io/assets/images/neural_network.jpg" width="80%" /></center> |
58 |
| - |
59 |
| -<h1 id="2-perceptron">2. Perceptron</h1> |
| 25 | +<h1 id="1-퍼셉트론">1. 퍼셉트론</h1> |
60 | 26 |
|
61 | 27 | <h2 id="개념">개념</h2>
|
| 28 | +<p><img src="/Users/somi.han/Documents/Deep%20Learning/lecture-29-convolutional-neural-networks-computer-vision-spring2015-9-638.jpg" alt="" /></p> |
| 29 | + |
62 | 30 | <ul>
|
63 |
| - <li>1957년에 코넬 항공 연구소(Cornell Aeronautical Lab)의 프랑크 로젠블라트(Frank Rosenblatt)에 의해 고안</li> |
64 |
| - <li>1957년, Rosenblatt이 뉴런(neuron)을 모방 하여 고안</li> |
65 |
| - <li>뉴런: 특정 자극(impulse) 이 있다면 그 자극이 어느 역치(threshold) 이상이여야 반응(activation) |
66 |
| - <ul> |
67 |
| - <li>활동전위(action potential)가 축삭(axon)을 따라 내려가면서 세포막 안팎의 극성이 변화 -&gt; 다른 뉴런에서 온 신호에 반응하여 막이 역치(threshold) 전위에 도달하면 Na+ 및 K+ 개폐 이온 채널이 여닫힘 -&gt; 활동전위가 시작될 때 Na+ 채널이 열리고 Na+가 축삭 안으로 들어와 탈분극(Depolarization), 재분극은 K+ 채널이 열리고 K+가 축삭 밖으로 나갈 때 일어남 -&gt; 채널의 개폐로 세포 안팎 극성이 변화 -&gt; 신경 자극은 한 방향으로만 이동하여 축삭 말단(axon ending)에서 다른 뉴런으로 신호를 전달</li> |
68 |
| - </ul> |
69 |
| - <center><img src="https://mioscode.github.io/assets/images/action_potential.gif" width="80%" /></center> |
70 |
| - <center><img src="https://mioscode.github.io/assets/images/action_potential.png" width="80%" /></center> |
71 |
| - (출처: 위키) |
72 |
| - </li> |
73 |
| - <li>퍼셉트론: 입력(input) 신호의 총합이 정해진 임계값($\theta$) 넘었을 때 $1$을 출력(output), 넘지 못하면 $0$ 또는 $-1$ 출력</li> |
| 31 | + <li>1957년 고안, neuron 본뜸</li> |
| 32 | + <li>입력 신호의 총합이 정해진 임계값(세타θ, neuron: threshold) 넘었을 때 1을 출력(neuron: activation), 넘지 못하면 0 또는 -1 출력</li> |
74 | 33 | </ul>
|
75 | 34 |
|
| 35 | +<p><img src="/Users/somi.han/Documents/Deep%20Learning/lecture-29-convolutional-neural-networks-computer-vision-spring2015-9-638.jpg" alt="" /></p> |
| 36 | + |
76 | 37 | <p>각 입력신호에 고유한 weight 부여되며 기계학습은 이 weight(입력을 조절하니 매개변수로도 볼 수 있음)의 값을 정하는 작업
|
77 | 38 | <img src="/Users/somi.han/Documents/Deep%20Learning/Perceptron_3.png" alt="" /></p>
|
78 | 39 |
|
@@ -171,12 +132,7 @@ AND, OR, NAND, XOR Gate 다음 단계</p>
|
171 | 132 | <li>epoch를 늘릴 수록 가중치가 계속 업데이트(학습)되면서 점점 오차가 줄어나가는 방법</li>
|
172 | 133 | </ul>
|
173 | 134 |
|
174 |
| -<p><img src="/Users/somi.han/Documents/Deep%20Learning/997C7A3359EEF5CA1F.png" alt="" /></p> |
175 |
| - |
176 |
| -<h2 id="reference">Reference</h2> |
177 |
| -<p>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</p></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/"><h1 id="mysql-workbench---mysql-dump-error">MySQL Workbench - MySQL Dump ERROR</h1> |
| 135 | +<p><img src="/Users/somi.han/Documents/Deep%20Learning/997C7A3359EEF5CA1F.png" alt="" /></p></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/"><h1 id="mysql-workbench---mysql-dump-error">MySQL Workbench - MySQL Dump ERROR</h1> |
180 | 136 | <h2 id="내용">내용</h2>
|
181 | 137 | <p>MySQL Workbench에서 Data Export 시,
|
182 | 138 | Unknown table ‘column_statistics’ in information_schema (1109) Error 나오면서 실패</p>
|
|
0 commit comments