Artificial Neural Net Work GA Genetic Algorithm Heuristic Search Radial Based Widrow-Hoff AND Unit P P2 A PR i= B A = NeuralUnit( P B)..

Size: px
Start display at page:

Download "Artificial Neural Net Work GA Genetic Algorithm Heuristic Search Radial Based Widrow-Hoff AND Unit P P2 A PR i= B A = NeuralUnit( P B).."

Transcription

1 ARTIFICIAL NEURAL NET WORK 43 UNIT WIDROW-HOFF

2 Artificial Neural Net Work GA Genetic Algorithm Heuristic Search Radial Based Widrow-Hoff AND Unit P P2 A PR i= B A = NeuralUnit( P B)... R i 43

3 satlins hardlims ,,,satlins,, tansig - hardlim(input,b) b= plot(-.2:.:.2,hardlim(-.2:.:.2,.5),'r','linewidth',3);axis([ ]);grid

4 P() input P(2) input2 w(,2) w(,) w(,3) Sum F Neural Unit A P(3) input3 b bias a=f(w*pb) Neural Unit P W P() P = P( 2) W = [ W(,) W(,) 2 W(,) 3 ] P() 3 P() A = F [ W W W ] P (,) (,) 2 (,) 3 ( 2) b P() 3 A= F W P b ( ) 45

5 P() input P(2) input2 w(,)_ Sum2 Sum F b() A() bias_ Neural Unit_ b() bias2 F A(2) Neural Unit2 P(R) input3 w(s,r) Sum b(s) biass F Neural UnitS A(S) R S P() W W L W b() 2 R P( 2) W P =, W = 2 W22 L W2 M M M O M PR ( ) W W 2 L W S S SR R b( 2) b = M bs ( ) A() W W2 L W A( 2) W2 W22 L W 2 = F M M M O M AS ( ) W W 2 L W A= F( W P b ) R S S SR R P() b() P( 2) b( 2) M M PR ( ) bs ( ) W b P A 46

6 W W2 P() A input Sum B() F Bias Sum Sum6 B2() P() Bias3 F input2 B() Sum2 Bias Sum3 B2() Sum9 Bias4 P() F B() input3 Sum5 Bias2 Sum4 Sum B2() Bias5 A2 F2 Sum7 F2 Sum8 F2 Sum W3 B3() Sum2 Bias6 Sum4 B3() Bias7 B3() Sum5 Bias8 F3 Sum3 F3 Sum6 F3 Sum7 A3 A=F(W*P,B) A3=F3(W3*A2,B3) A2=F2(W2*A,B2) A3=F3( * (W2*F(W*P,B), ),B3) MATLAB Neural Net Toolbox P(,) A(,) P( 2, ) A( 2, ) P(:, ) = A(:, ) = M M PR (, ) AS (, ) P(,) 2 A(,) 2 P( 22, ) A( 22, ) P(:, 2) = A(:, 2) = M M PR (, 2) AS (, 2) P(, Q) A(, Q) P( 2, Q) A( 2, Q) P(:, Q) = A(:, Q) = M M PRQ (, ) ASQ (, ) 47

7 P(,) P(,) 2 L P(, Q) A(,) A(,) 2 L A(, Q) P( 2, ) P( 22, ) L P( 2, Q) A( 2, ) A( 22, ) L A( 2, Q) P = A = M M O M M M O M PR (, ) PR (, 2) L PRQ (, ) AS (, ) AS (, 2) L ASQ (, ) A = F( W P b) b Neural Network Toolbox Neural Unit A = F( W P, b) Rosenblatt Artificial Neural Network Neuron Neuron Rx input W xr b Sx hardlim A Sx A=hardlim(W*P,b) W b hardlim AND AND P() P(2) A P T(Target) >> P=[ ; ; ; ]' 48

8 P = >> T=[ ] T= P(:,) T() P(:,2) T(2) Neural Network Toolbox rands R 2 S R=2;S=; [W,B]=rands(S,R) W = B = W B hardlim A A=hardlim(W*P,B); learnp [dw db]=learnp(p,a,t); learnp E=T-A %hardlim T A dw = E*P'; % W dw db = E; % E B db dw,db W,B W=WdW B=BdB E Neural Network Toolbox M trainp 49

9 TP=[disp_freq max_epoch]; [W,B,epochs]=trainp(W,B,P,T,TP) disp_freq max_epoch P=[ ; ; ; ]'; T=[ ]; R=2;S=; [W,B]=rands(S,R) disp_freq=; max_epoch=; TP=[disp_freq max_epoch]; [W,B,epochs]=trainp(W,B,P,T,TP) 2 Sum-Squared Network Error for 7 Epochs -2 Sum-Squared Error Epoch 7 P(),P(2) x,y A z 3 (,) z for PP=:.: for PP2=:.: PPP(PP*,PP2*)=hardlim(W*[PP;PP2],B); end; end mesh(:.:,:.:,ppp) 5

10 Hardlim Widrow-Hoff Hardlim Widrow-Hoff, W B W B Widrow-Hofff Widrow-Hoff err_goal Widrow-Hoff (purelin) W B E=T-A W B lr lr lr / ( P T P) Neural Network toolbox lr maxlinlr lr=.99*maxlinlr(p,'bias'); 5

11 maxlinlr = P T max [ P ] M L Widrow-Hoff E=T-A dw = E*P'; db = E; E=lr*(T-A) dw = E*P'; db = E; learnp learnwh trainwh AND Hidrow-Hoff P=[ ; ; ; ]'; T=[ ]; R=2;S=; [W,B]=rands(S,R) disp_freq=; max_epoch=; err_goal=.25; lr=.4* maxlinlr(p,'bias'); TP=[disp_freq max_epoch err_goal lr]; [W,B,epochs]=trainwh(W,B,P,T,TP) Sum-Squared Network Error for 478 Epochs err_goal.25 52

12 for PP=:.: for PP2=:.: PPP(PP*,PP2*)=purelin(W*[PP;PP2],B); end; end mesh(:.:,:.:,ppp); axis([ - ]) (,).5 (,),(,) (,) Widrow-Hoff tansig logsig purelin 53

13 P input Rx Sx_ A W SxR B Sx tansig Sx W2 S2xS B2 S2x purelin A2 S2x_ A=tansig(W*P,B) A2=purelin(W2*A,B2) A2=purelin( *tansig(w*p, ),B2) W,W2 B,B2 S 4 [R,Q]=size(P); S=4; [S2,Q]=size(T); [W,B]=rands(S,R); [W2,B2]=rands(S2,S); deltalin, deltatan, deltalog Widrow-Hoff E E=lr*(T-A) dw = E*P'; db = E; learnwh E=lr*D; dw = E*P'; db = E; learnbp 54

14 D deltalin,deltatan,deltalog AND learnbp P=[ ; ; ; ]'; T=[ ]; [R,Q]=size(P); S=6; [S2,Q]=size(T); [W,B]=rands(S,R); [W2,B2]=rands(S2,S); lr=.2; err_goal=.2; A=logsig(W*P,B);A2=purelin(W2*A,B2); E=T-A2; SSE=sumsqr(E); for epoch=:5 if(sse < err_goal) epoch=epoch-;break; end D2=deltalin(A2,E);D=deltatan(A,D2,W2); [dw,db]= learnbp(p,d,lr); [dw2,db2]=learnbp(a,d2,lr); W=WdW;B=BdB; W2=W2dW2;B2=B2dB2; A=logsig(W*P,B);A2=purelin(W2*A,B2); E=T-A2; SSE=sumsqr(E); end 55

15 M trainbp clear close all P=[ ; ; ; ]' T=[ ]; [R,Q]=size(P); S=5; [S2,Q]=size(T); [W,B]=rands(S,R); [W2,B2]=rands(S2,S); disp_freq=; max_epoch=8; err_goal=.; lr=.2; TP=[disp_freq max_epoch err_goal lr]; [W,B,W2,B2,epoch,TR]=trainbp(W,B,'tansig',W2,B2,'purelin',P,T,TP); Sum-Squared Network Error for 852 Epochs Sum-Squared Error W,W2 B,B2 3 56

16 3 figure for P=:.:; for P2=:.: aaa(p*,p2*)=purelin(w2*tansig(w*[p;p2]b)b2); end end; %%%%%%% a=mesh(:.:,:.:,aaa); d=; AZ=-37.5;EL=3; pint=;ppint=; b=gca;c=gcf; %set(a,'erasemode','xor'); set(c,'windowbuttondownfcn','d=;pint=get(c,''currentpoint'');') set(c,'windowbuttonmotionfcn',... ['if(d==) ppint=get(c,''currentpoint'');',... 'diffpint=pint-ppint;pint=ppint;',... 'AZ=AZdiffpint();EL=ELdiffpint(2);view([AZ,EL]);end']) set(c,'windowbuttonupfcn','d=;') (,) (,),(,),(,) AND 57

17 xor W B dw,db E W B dw db dw = E*P'; db = E; dw = mc*dw(-mc)*e*p'; db = mc*db(-mc)*e; mc mc= mc=.95 Neural Network Toolbox trainbpm err_goal=.; lr=.5; momentum=.95; err_ratio=.4; TP=[disp_freq max_epoch err_goal lr momentum err_ratio]; [W,B,W2,B2,epoches,TR]=trainbpm(W,B,'tansig',W2,B2,'purelin',P,T,TP); err_ratio momentum 58

18 Sum-Squared Error Training for 527 Epochs Epoch 2 Learning Rate Epoch Nguyen,Widrow W B tansig logsig nwtan nwlog Neural Network Toolbox initff [W,B,W2,B2] = initff(p,s,'tansig',t,'purelin'); lr M trainbpa P=[ ; ; ; ]' T=[ ]; S=6; [W,B,W2,B2] = initff(p,s,'tansig',t,'purelin'); disp_freq=; max_epoch=8; err_goal=.2; lr=.;lr_inc =.5;lr_dec =.7; err_ratio=.4; TP=[disp_freq max_epoch err_goal lr lr_inc lr_dec err_ratio]; [W,B,W2,B2,epoches,TR]=trainbpa(W,B,'tansig',W2,B2,'purelin',P,T,TP); 59

19 Sum-Squared Error - -2 Training for 55 Epochs Epoch.5 Learning Rate Epoch M trainbpx P=[ ; ; ; ]' T=[ ]; S=6; [W,B,W2,B2] = initff(p,s,'tansig',t,'purelin'); disp_freq=; max_epoch=8; err_goal=.2; lr=.;lr_inc =.5;lr_dec =.7;; err_ratio=.4; momentum =.9; TP=[disp_freq max_epoch err_goal lr lr_inc lr_dec momentum err_ratio]; [W,B,W2,B2,epoches,TR]=trainbpx(W,B,'tansig',W2,B2,'purelin',P,T,TP); 6

20 Sum-Squared Error - -2 Training for 7 Epochs Epoch.25 Learning Rate Epoch hardlim learnp trainp Widrow-Hoff purelin learnwh tranwh Back propagation tansig/logsig learnbp trainbp purelin learnbpm trainpbm learnbpa trainbpa learnbpx trainbpx 6

知能科学:ニューラルネットワーク

知能科学:ニューラルネットワーク 2 3 4 (Neural Network) (Deep Learning) (Deep Learning) ( x x = ax + b x x x ? x x x w σ b = σ(wx + b) x w b w b .2.8.6 σ(x) = + e x.4.2 -.2 - -5 5 x w x2 w2 σ x3 w3 b = σ(w x + w 2 x 2 + w 3 x 3 + b) x,

More information

知能科学:ニューラルネットワーク

知能科学:ニューラルネットワーク 2 3 4 (Neural Network) (Deep Learning) (Deep Learning) ( x x = ax + b x x x ? x x x w σ b = σ(wx + b) x w b w b .2.8.6 σ(x) = + e x.4.2 -.2 - -5 5 x w x2 w2 σ x3 w3 b = σ(w x + w 2 x 2 + w 3 x 3 + b) x,

More information

杏香は2000年5月16日午前5時15分に横浜市立市民病院で生まれた

杏香は2000年5月16日午前5時15分に横浜市立市民病院で生まれた 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 http://opac.ndl.go.jp/process NDL-OPAC2009 2 11 P12 19 2000 10 P19 2008 10 9 2008 3 PP14 17 20 2001 PP470 473 2007 PP81 176 1972 P86 2002 PP346 348 1982 P162

More information

EP7000取扱説明書

EP7000取扱説明書 EP7000 S0109-3012 3 47 811 1213 1419 2021 53 54 5560 61 6263 66 2223 2427 2830 3133 3436 3740 4142 4344 45 46 4750 5152 2 4 5 6 7 1 3 4 5 6 7 8 9 15 16 17 18 13 EP7000 2 10 11 12 13 14 19 20 21 22 23 24

More information

it-ken_open.key

it-ken_open.key 深層学習技術の進展 ImageNet Classification 画像認識 音声認識 自然言語処理 機械翻訳 深層学習技術は これらの分野において 特に圧倒的な強みを見せている Figure (Left) Eight ILSVRC-2010 test Deep images and the cited4: from: ``ImageNet Classification with Networks et

More information

9 8 7 (x-1.0)*(x-1.0) *(x-1.0) (a) f(a) (b) f(a) Figure 1: f(a) a =1.0 (1) a 1.0 f(1.0)

9 8 7 (x-1.0)*(x-1.0) *(x-1.0) (a) f(a) (b) f(a) Figure 1: f(a) a =1.0 (1) a 1.0 f(1.0) E-mail: takio-kurita@aist.go.jp 1 ( ) CPU ( ) 2 1. a f(a) =(a 1.0) 2 (1) a ( ) 1(a) f(a) a (1) a f(a) a =2(a 1.0) (2) 2 0 a f(a) a =2(a 1.0) = 0 (3) 1 9 8 7 (x-1.0)*(x-1.0) 6 4 2.0*(x-1.0) 6 2 5 4 0 3-2

More information

広報さっぽろ 2016年8月号 厚別区

広報さっぽろ 2016年8月号 厚別区 8/119/10 P 2016 8 11 12 P4 P6 P6 P7 13 P4 14 15 P8 16 P6 17 18 19 20 P4 21 P4 22 P7 23 P6 P7 24 25 26 P4 P4 P6 27 P4 P7 28 P6 29 30 P4 P5 31 P5 P6 2016 9 1 2 3 P4 4 P4 5 P5 6 7 8 P4 9 10 P4 1 b 2 b 3 b

More information

untitled

untitled 20 7 1 22 7 1 1 2 3 7 8 9 10 11 13 14 15 17 18 19 21 22 - 1 - - 2 - - 3 - - 4 - 50 200 50 200-5 - 50 200 50 200 50 200 - 6 - - 7 - () - 8 - (XY) - 9 - 112-10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 -

More information

untitled

untitled 19 1 19 19 3 8 1 19 1 61 2 479 1965 64 1237 148 1272 58 183 X 1 X 2 12 2 15 A B 5 18 B 29 X 1 12 10 31 A 1 58 Y B 14 1 25 3 31 1 5 5 15 Y B 1 232 Y B 1 4235 14 11 8 5350 2409 X 1 15 10 10 B Y Y 2 X 1 X

More information

社葬事前手続き

社葬事前手続き 2 ... 4... 4... 5 1... 5 2... 5 3... 5 4... 5 5... 5 6... 5 7... 5 8... 6 9... 6 10... 6... 6 1... 6 2... 6 3... 7 4... 7... 8 1 2.... 8 2 2.... 9 3 4.. 3 4. 1 2 3 4 5 6 7 5 8 9 10 I 1 6 2 EL 3 4 24 7

More information

17 17 17 17 11 21 28 1 24 12 36 2,000 2 22 11 3.67 3.38 22 2.97 21 10 1.7 1.12 22 10 13 2.75 11 10 15 24 10 12 14 3 17 17 2006 4 17 10 24 12 17 5 15 17 17 11 40 6 17 40 17 11 7 24 17 24 17 8 40 17 17 9

More information

PowerPoint Presentation

PowerPoint Presentation 2 9/ 3 3 9/ 9 4 5 , PR () 6 ,,, (11) 7 PR 8 9 10 11 TEL. 106 8/131512/291/3 TEL. 107 12/291/3 12 http://www.f-turn.jp/ 13 21 4 21 14 200910 U 200911 U 200911 20102 15 20102 PR 20103 20103 16 20103 20104

More information

untitled

untitled ,337 37 35 0,349,09 35 55 988 3 0 0 3,387 7 90 0,369,46 5 57 5 0 90 38 8,369 3 4 5 6 7 8 9 0 3 4 5 6 7 8 9 0 3 4 5 6 8 9 30 3 3 5,400 7,00 9,000 0,800,600 4,400 6,00 8,000 9,800,600 3,400 5,00 7,000 8,800

More information

,877 61,524 33, ,292, ,653 57,601 95,188 2,416 1,767,

,877 61,524 33, ,292, ,653 57,601 95,188 2,416 1,767, 02 02 02 180,771 07 02 01 1,377 07 02 02 1,051,703 07 02 05 220,099 07 03 01 926,597 08 02 04 1,877,566 08 04 02 2,973,603 08 05 03 672,950 10 06 03 778,433 10 06 04 735,789 10 06 06 225,392 10 06 07 365,442

More information

() L () 20 1

() L () 20 1 () 25 1 10 1 0 0 0 1 2 3 4 5 6 2 3 4 9308510 4432193 L () 20 1 PP 200,000 P13P14 3 0123456 12345 1234561 2 4 5 6 25 1 10 7 1 8 10 / L 10 9 10 11 () ( ) TEL 23 12 7 38 13 14 15 16 17 18 L 19 20 1000123456

More information

日経テレコン料金表(2016年4月)

日経テレコン料金表(2016年4月) 1 2 3 4 8,000 15,000 22,000 29,000 5 6 7 8 36,000 42,000 48,000 54,000 9 10 20 30 60,000 66,000 126,000 166,000 50 100 246,000 396,000 1 25 8,000 7,000 620 2150 6,000 4,000 51100 101200 3,000 1,000 201

More information

73 p.1 22 16 2004p.152

73 p.1 22 16 2004p.152 1987 p.80 72 73 p.1 22 16 2004p.152 281895 1930 1931 12 28 1930 10 27 12 134 74 75 10 27 47.6 1910 1925 10 10 76 10 11 12 139 p.287 p.10 11 pp.3-4 1917 p.284 77 78 10 13 10 p.6 1936 79 15 15 30 80 pp.499-501

More information

122011pp.139174 18501933

122011pp.139174 18501933 122011pp.139174 18501933 122011 1850 3 187912 3 1850 8 1933 84 4 1871 12 1879 5 2 1 9 15 1 1 5 3 3 3 6 19 9 9 6 28 7 7 4 1140 9 4 3 5750 58 4 3 1 57 2 122011 3 4 134,500,000 4,020,000 11,600,000 5 2 678.00m

More information

2 2 3 4 5 5 2 7 3 4 6 1 3 4 7 4 2 2 2 4 2 3 3 4 5 1932 A p. 40. 1893 A p. 224, p. 226. 1893 B pp. 1 2. p. 3.

2 2 3 4 5 5 2 7 3 4 6 1 3 4 7 4 2 2 2 4 2 3 3 4 5 1932 A p. 40. 1893 A p. 224, p. 226. 1893 B pp. 1 2. p. 3. 1 73 72 1 1844 11 9 1844 12 18 5 1916 1 11 72 1 73 2 1862 3 1870 2 1862 6 1873 1 3 4 3 4 7 2 3 4 5 3 5 4 2007 p. 117. 2 2 3 4 5 5 2 7 3 4 6 1 3 4 7 4 2 2 2 4 2 3 3 4 5 1932 A p. 40. 1893 A p. 224, p. 226.

More information

29 2011 3 4 1 19 5 2 21 6 21 2 21 7 2 23 21 8 21 1 20 21 1 22 20 p.61 21 1 21 21 1 23

29 2011 3 4 1 19 5 2 21 6 21 2 21 7 2 23 21 8 21 1 20 21 1 22 20 p.61 21 1 21 21 1 23 29 2011 3 pp.55 86 19 1886 2 13 1 1 21 1888 1 13 2 3,500 3 5 5 50 4 1959 6 p.241 21 1 13 2 p.14 1988 p.2 21 1 15 29 2011 3 4 1 19 5 2 21 6 21 2 21 7 2 23 21 8 21 1 20 21 1 22 20 p.61 21 1 21 21 1 23 1

More information

Microsoft Word - 映画『東京裁判』を観て.doc

Microsoft Word - 映画『東京裁判』を観て.doc 1 2 3 4 5 6 7 1 2008. 2 2010, 3 2010. p.1 4 2008 p.202 5 2008. p.228 6 2011. 7 / 2008. pp.3-4 1 8 1 9 10 11 8 2008, p.7 9 2011. p.41 10.51 11 2009. p. 2 12 13 14 12 2008. p.4 13 2008, p.7-8 14 2008. p.126

More information

308 ( ) p.121

308 ( ) p.121 307 1944 1 1920 1995 2 3 4 5 308 ( ) p.121 309 10 12 310 6 7 ( ) ( ) ( ) 50 311 p.120 p.142 ( ) ( ) p.117 p.124 p.118 312 8 p.125 313 p.121 p.122 p.126 p.128 p.156 p.119 p.122 314 p.153 9 315 p.142 p.153

More information

戦後の補欠選挙

戦後の補欠選挙 1 2 11 3 4, 1968, p.429., pp.140-141. 76 2005.12 20 14 5 2110 25 6 22 7 25 8 4919 9 22 10 11 12 13 58154 14 15 1447 79 2042 21 79 2243 25100 113 2211 71 113 113 29 p.85 2005.12 77 16 29 12 10 10 17 18

More information

第2章 近代日本の貧困観

第2章  近代日本の貧困観 30 1867 1970 710 723 NGO 2000:32 17 18 19 2000:67] Food for Work 81695 6 7 10 1999:33] 1783 10 4400 1999:35] 2000:160] 2000:90] 1833 2000:148] 1836 2000:149] 2000:151] 2000:172 81837 [2000:143] 81837

More information

研究紀要 第5号

研究紀要 第5号 3 4 5 6 7 8 a s d f a 9 10 s d a 11 12 s d f g 13 h j a d s 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 a 35 s 36 a 37 s 38 a 39 s 40 a 41 s d 42 f 43 44 46 47 48 49 50 a s d as d 51

More information

1009.\1.\4.ai

1009.\1.\4.ai - 1 - E O O O O O O - 2 - E O O O - 3 - O N N N N N N N N N N N N N N N N N N N N N N N E e N N N N N N N N N N N N N N N N N N N N N N N D O O O - 4 - O O O O O O O O N N N N N N N N N N N N N N N N N

More information

johnny-paper2nd.dvi

johnny-paper2nd.dvi 13 The Rational Trading by Using Economic Fundamentals AOSHIMA Kentaro 14 2 26 ( ) : : : The Rational Trading by Using Economic Fundamentals AOSHIMA Kentaro abstract: Recently Artificial Markets on which

More information

1

1 PalmGauss SC PGSC-5G Instruction Manual PalmGauss SC PGSC-5G Version 1.01 PalmGauss SC PGSC5G 1.... 3 2.... 3 3.... 3 3.1... 3 3.2... 3 3.3 PalmGauss... 4 3.4... 4 3.4.1 (Fig. 4)... 4 3.4.2 (Fig. 5)...

More information

知的学習認識システム特論9.key

知的学習認識システム特論9.key shouno@uec.ac.jp 1 http://www.slideshare.net/pfi/deep-learning-22350063 1960 1970 1980 1990 2000 2010 Perceptron (Rosenblatt 57) Linear Separable (Minski & Papert 68) SVM (Vapnik 95) Neocognitron

More information

130 Oct Radial Basis Function RBF Efficient Market Hypothesis Fama ) 4) 1 Fig. 1 Utility function. 2 Fig. 2 Value function. (1) (2)

130 Oct Radial Basis Function RBF Efficient Market Hypothesis Fama ) 4) 1 Fig. 1 Utility function. 2 Fig. 2 Value function. (1) (2) Vol. 47 No. SIG 14(TOM 15) Oct. 2006 RBF 2 Effect of Stock Investor Agent According to Framing Effect to Stock Exchange in Artificial Stock Market Zhai Fei, Shen Kan, Yusuke Namikawa and Eisuke Kita Several

More information

untitled

untitled Excel A D-2 B-2 D-2 B2 C-2 D-2 C2-23 - Enter D-2 B2(1000) C2(5) 5000 D-2 (D-2) (D-2) (D-3) (D-6) - 24 - (D-3) (D-6) D (D-2) =B2*C2 (D-3) =B3*C3 (D-4) =B4*C4 Excel - 25 - $A$1 1000 A-1 (B-1) =$A$1 (B-1)

More information

1007.\1.ai

1007.\1.ai - 1 - B - 2 - e - 3 - F O f g e f - 4 - O O N N N N N N N N N N N N N N N N N N N N N N N F C - 5 - N N N N N N N N N N N N N N N N N N N N N N N F - 6 - D - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 -

More information

DA100データアクイジションユニット通信インタフェースユーザーズマニュアル

DA100データアクイジションユニット通信インタフェースユーザーズマニュアル Instruction Manual Disk No. RE01 6th Edition: November 1999 (YK) All Rights Reserved, Copyright 1996 Yokogawa Electric Corporation 801234567 9 ABCDEF 1 2 3 4 1 2 3 4 1 2 3 4 1 2

More information

x T = (x 1,, x M ) x T x M K C 1,, C K 22 x w y 1: 2 2

x T = (x 1,, x M ) x T x M K C 1,, C K 22 x w y 1: 2 2 Takio Kurita Neurosceince Research Institute, National Institute of Advanced Indastrial Science and Technology takio-kurita@aistgojp (Support Vector Machine, SVM) 1 (Support Vector Machine, SVM) ( ) 2

More information

(a + b)(a b) = (a + b)a (a + b)b = aa + ba ab bb = a 2 b 2 (a + b)(a b) a 2 b 2 2 (1 x)(1 + x) = 1 (1 + x) x (1 + x) = (1 + x) (x + x 2 ) =

(a + b)(a b) = (a + b)a (a + b)b = aa + ba ab bb = a 2 b 2 (a + b)(a b) a 2 b 2 2 (1 x)(1 + x) = 1 (1 + x) x (1 + x) = (1 + x) (x + x 2 ) = 2005 0 (a + b)(a b) = (a + b)a (a + b)b = aa + ba ab bb = a 2 b 2 (a + b)(a b) a 2 b 2 2 ( )( + ) = ( + ) ( + ) = ( + ) ( + 2 ) = + ( ) 2 = 2 (a + b)(a b) = a 2 b 2 ( )( + ) ( + ) ( + + 2 ) http://www.hyuki.com/story/genfunc.html

More information

LMC6022 Low Power CMOS Dual Operational Amplifier (jp)

LMC6022 Low Power CMOS Dual Operational Amplifier (jp) Low Power CMOS Dual Operational Amplifier Literature Number: JAJS754 CMOS CMOS (100k 5k ) 0.5mW CMOS CMOS LMC6024 100k 5k 120dB 2.5 V/ 40fA Low Power CMOS Dual Operational Amplifier 19910530 33020 23900

More information

14 2 Scilab Scilab GUI インタグラフ プリタ描画各種ライブラリ (LAPACK, ODEPACK, ) SciNOTES ハードウェア (CPU, GPU) 21 Scilab SciNotes 呼び出し 3 変数ブラウザ 1 ファイルブラウザ 2 コンソール 4 コマンド履歴

14 2 Scilab Scilab GUI インタグラフ プリタ描画各種ライブラリ (LAPACK, ODEPACK, ) SciNOTES ハードウェア (CPU, GPU) 21 Scilab SciNotes 呼び出し 3 変数ブラウザ 1 ファイルブラウザ 2 コンソール 4 コマンド履歴 13 2 Scilab Scilab Scilab 21 Scilab Scilab[4] INRIA C/C++, Fortran LAPACK Matlab Scilab Web http://wwwscilaborg/ 2016 4 552 Windows 10/8x MacOS X, Linux Scilab Octave Matlab (Matlab Toolbox) (Mathematica

More information

2 1,384,000 2,000,000 1,296,211 1,793,925 38,000 54,500 27,804 43,187 41,000 60,000 31,776 49,017 8,781 18,663 25,000 35,300 3 4 5 6 1,296,211 1,793,925 27,804 43,187 1,275,648 1,753,306 29,387 43,025

More information

18 2 20 W/C W/C W/C 4-4-1 0.05 1.0 1000 1. 1 1.1 1 1.2 3 2. 4 2.1 4 (1) 4 (2) 4 2.2 5 (1) 5 (2) 5 2.3 7 3. 8 3.1 8 3.2 ( ) 11 3.3 11 (1) 12 (2) 12 4. 14 4.1 14 4.2 14 (1) 15 (2) 16 (3) 17 4.3 17 5. 19

More information

  西村研観光まちづくりへの感動 ツアコンになって

  西村研観光まちづくりへの感動 ツアコンになって 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 20 2005 400 2005 2004 2007 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 1 3 89 90 91 92 93 94 95 96 97 98 99 100

More information

2008 : 80725872 1 2 2 3 2.1.......................................... 3 2.2....................................... 3 2.3......................................... 4 2.4 ()..................................

More information

1) (AI) 5G AI AI Google IT Deep Learning RWC (RWCP) RWC Web RWCP [1] 2. RWC ETL-Mark I, II (1952, 1955) (ETL) (ETL-Mark

1) (AI) 5G AI AI Google IT Deep Learning RWC (RWCP) RWC Web RWCP [1] 2. RWC ETL-Mark I, II (1952, 1955) (ETL) (ETL-Mark RWC 10 RWC 1992 4 2001 13 RWC 21 RWC 1. RWC (Real World Computing ) (1982 1992 ) 3 1992 2001 10 21 RWCP 5 1992 1996 5 1997 2001 RWC (RWI) (PDC) 2 RWC (5G) 1 1) (AI) 5G AI AI Google IT Deep Learning RWC

More information

P24-25.eps

P24-25.eps Contents 1 24 26 32 44 23 24 25 2-1 1 2 3 1: 2: 3: 26 27 28 29 Action A Thinking T Team Work W A Action W T Thinking Team Work 30 31 3-1 3-2 32 33 b. c. 1 d. e. 1 a. 2 2 34 35 3 4 36 37 38 39 3-3 3-4 1

More information

...1 (1)... 1 (2) ) )... 1 (3)... 1 (4) ) )... 2 (5)... 3 (6)... 3 (7) ) )... 4 (8)... 4 (9)... 4 (10) (1

...1 (1)... 1 (2) ) )... 1 (3)... 1 (4) ) )... 2 (5)... 3 (6)... 3 (7) ) )... 4 (8)... 4 (9)... 4 (10) (1 ...1 (1)... 1 (2)... 1 1)... 1 2)... 1 (3)... 1 (4)... 1 1)... 1 2)... 2 (5)... 3 (6)... 3 (7)... 4 1)... 4 2)... 4 (8)... 4 (9)... 4 (10)... 4...5 (1)... 5 1)... 5 2)... 5 (2)... 5 1)... 5 2)... 5 3)...

More information

R1RW0408D シリーズ

R1RW0408D シリーズ お客様各位 カタログ等資料中の旧社名の扱いについて 2010 年 4 月 1 日を以って NEC エレクトロニクス株式会社及び株式会社ルネサステクノロジが合併し 両社の全ての事業が当社に承継されております 従いまして 本資料中には旧社名での表記が残っておりますが 当社の資料として有効ですので ご理解の程宜しくお願い申し上げます ルネサスエレクトロニクスホームページ (http://www.renesas.com)

More information

kiyo5_1-masuzawa.indd

kiyo5_1-masuzawa.indd .pp. A Study on Wind Forecast using Self-Organizing Map FUJIMATSU Seiichiro, SUMI Yasuaki, UETA Takuya, KOBAYASHI Asuka, TSUKUTANI Takao, FUKUI Yutaka SOM SOM Elman SOM SOM Elman SOM Abstract : Now a small

More information

TH-42/47/55LF6J,TH-42/47/55LF60J

TH-42/47/55LF6J,TH-42/47/55LF60J - + - + 1 2 M3 HDMI HDMI AV OUT HDMI AV OUT DVD DVD 19 3 1 18 4 2 11 12 13 14 15 16 17 18 19 10 DVD VIDEO OUT VCR AUDIO OUT L R RCA-BNC RCA-BNC Y PB PR OUT RGB OUT L R AUDIO OUT RGB DVD DVI-D PC DVI 5

More information

untitled

untitled 慣性運動計測機器 クロ ス ボ ー株 式 会 社 Crossbow Japan Ltd. MEMS 3 1 X Y Z 3 RS-232 Windows Gyro-View Nav-View GPS NAV420 3 AHRS400 VG400 6 IMU400 (AHRS) TEL: 06-6489-5922 FAX: 06-6489-5910 E-MAIL: sales@xbow.jp WEB:

More information

untitled

untitled () () WHO ICD ICD 19 1 http://www.mhlw.go.jp/toukei/sippei/icd.html ICD-1 1995 7 24 16 ICD-9 1979 54 1994 6 ICD-1 ICD-9 1 1995 24 ICD-1 5+2+2 W1 W3 W1 W13 W17 W23 W24 W51 W52 ICD-1 1 () (1) (2) (3) (4)

More information

※本論文は「日本映像学会第29回大会」(2003年6月1日/倉敷芸術科学大学)での発表論文によって作成し、多少の加筆がある

※本論文は「日本映像学会第29回大会」(2003年6月1日/倉敷芸術科学大学)での発表論文によって作成し、多少の加筆がある 191 1963-19 1960 1961 1971 1950 1 2 1959 1960 3 155 192 97 4,900 309 6,600 1961 4 5 1961 1962 1963 6 1962 G 7 1963 8 193 9 180 1964 1964 1965 1963 1973 10 10 1963 1972 673 235 11967 37 58 11 1 1963-1972

More information

Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1) (2) ( ) BASIC BAS

Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1) (2) ( ) BASIC BAS Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1 (2 ( BASIC BASIC download TUTORIAL.PDF http://hp.vector.co.jp/authors/va008683/

More information

Convolutional Neural Network A Graduation Thesis of College of Engineering, Chubu University Investigation of feature extraction by Convolution

Convolutional Neural Network A Graduation Thesis of College of Engineering, Chubu University Investigation of feature extraction by Convolution Convolutional Neural Network 2014 3 A Graduation Thesis of College of Engineering, Chubu University Investigation of feature extraction by Convolutional Neural Network Fukui Hiroshi 1940 1980 [1] 90 3

More information

Run-Based Trieから構成される 決定木の枝刈り法

Run-Based Trieから構成される  決定木の枝刈り法 Run-Based Trie 2 2 25 6 Run-Based Trie Simple Search Run-Based Trie Network A Network B Packet Router Packet Filtering Policy Rule Network A, K Network B Network C, D Action Permit Deny Permit Network

More information

2017 (413812)

2017 (413812) 2017 (413812) Deep Learning ( NN) 2012 Google ASIC(Application Specific Integrated Circuit: IC) 10 ASIC Deep Learning TPU(Tensor Processing Unit) NN 12 20 30 Abstract Multi-layered neural network(nn) has

More information

untitled

untitled 24 10 迄 20 6 7 13 () 4 5-10 5-1 3-1 0.5 2-2 2-1 1-20 0.8 2-6 4-51 4-19 1.7 3-17 2-34 4-13 1.4 2-22 3-29 2-7 0.9 6-30 1-1 1-15 0.3 (%) (%) 13 12,418 12,599 98.6 11,886 12,599 94.3 50-16 - % db db 4 622

More information

1

1 1 1 2 3 4 2 3 4 5 R 6 7 1 2 3 4 1 2 3 4 8 1 1 2 3 4 1 2 3 9 10 R A 85 U 11 8605 66 E 8 8 0 0 6 U W 6 B 38 U W6B28 U 12 W A 65 14 U W A 5B 12 U 6B 65 13 R A 85 F 14 15 16 17 18 19 20 21 22 23 24 25 26 27

More information

1, 2, 2, 2, 2 Recovery Motion Learning for Single-Armed Mobile Robot in Drive System s Fault Tauku ITO 1, Hitoshi KONO 2, Yusuke TAMURA 2, Atsushi YAM

1, 2, 2, 2, 2 Recovery Motion Learning for Single-Armed Mobile Robot in Drive System s Fault Tauku ITO 1, Hitoshi KONO 2, Yusuke TAMURA 2, Atsushi YAM 1, 2, 2, 2, 2 Recovery Motion Learning for Single-Armed Mobile Robot in Drive System s Fault Tauku ITO 1, Hitoshi KONO 2, Yusuke TAMURA 2, Atsushi YAMASHITA 2 and Hajime ASAMA 2 1 Department of Precision

More information

fx-3650P_fx-3950P_J

fx-3650P_fx-3950P_J SA1109-E J fx-3650p fx-3950p http://edu.casio.jp RCA500002-001V04 AB2 Mode

More information

PX-047A Series

PX-047A Series B K L & L & A B C D E F A B A B C A B C A B A B A B C D E F G P BB H I y y & & K L L & & K L L L L & & & & L d L & & & & L L & & & L & & & & L & & & & & & & & L L L L L L & & & A B C D E F G

More information

橡6 中表紙(教育施設).PDF

橡6 中表紙(教育施設).PDF 10 i ii 14 1 2 52 53 55 56 57 63 2 3 5 6 13 13 14 14 15 1 3 10 3 4 50 11 7 6 1 45,813.68 19,120.95 3 17,979.75 63,793.43 2,501.74 1,458.27 23 4,226.95 76 2,277.28 17 1,264.41 5 1,768.60 26 2,378.96 9 2,126.92

More information

2

2 MP1590B 2 LCAS Ethernet/IP PDH/DSn/SDH/SONET/OTN 1.5 Mbit/s 10.7 Gbit/s ITU-T G.709 OTN 3 LAN Local Area Network WAN Wide Area Network SDH/SONETEoS Ethernet over SDH/SONET EoSLCAS MU150101A EoS STM-16

More information

untitled

untitled 17 5 16 1 2 2 2 3 4 4 5 5 7 5.1... 8 5.2... 9 6 10 1 1 (sample survey metod) 1981 4 27 28 51.5% 48.5% 5 10 51.75% 48.24% (complete survey ( ) ) (populatio) (sample) (parameter) (estimator) 1936 200 2 N

More information

スライド 1

スライド 1 CNN を用いた弱教師学習による画像領域分割 下田和, 柳井啓司 電気通信大学 大学院情報理工学 研究科 総合情報学専攻 c 2015 UEC Tokyo. Convolutional Neural Network CNN クラス分類タスクにおいてトップの精度 CNN の応用 ( 物体位置の認識 ) 物体検出 物体に BB を付与 領域分割 ピクセル単位の認識 CNN を用いた領域分割 CNN による完全教師ありのセグメンテーション

More information

V 0 = + r pv (H) + qv (T ) = + r ps (H) + qs (T ) = S 0 X n+ (T ) = n S n+ (T ) + ( + r)(x n n S n ) = ( + r)x n + n (d r)s n = ( + r)v n + V n+(h) V

V 0 = + r pv (H) + qv (T ) = + r ps (H) + qs (T ) = S 0 X n+ (T ) = n S n+ (T ) + ( + r)(x n n S n ) = ( + r)x n + n (d r)s n = ( + r)v n + V n+(h) V I (..2) (0 < d < + r < u) X 0, X X = 0 S + ( + r)(x 0 0 S 0 ) () X 0 = 0, P (X 0) =, P (X > 0) > 0 0 H, T () X 0 = 0, X (H) = 0 us 0 ( + r) 0 S 0 = 0 S 0 (u r) X (T ) = 0 ds 0 ( + r) 0 S 0 = 0 S 0 (d r)

More information

20103n=3,280 7 3 40 30.2 3.4 16.9 43.1 n=3,280 2.2 8.1 n=3,280 69.8 9.6 6.9 4.7 3.3 30 19 0.3 60 28.0 0.7 20-24 19 0.3 1.4 25-29 60 28.0 3.9 30-34 1.7

20103n=3,280 7 3 40 30.2 3.4 16.9 43.1 n=3,280 2.2 8.1 n=3,280 69.8 9.6 6.9 4.7 3.3 30 19 0.3 60 28.0 0.7 20-24 19 0.3 1.4 25-29 60 28.0 3.9 30-34 1.7 20103n=3,280 7 3 40 30.2 3.4 16.9 43.1 n=3,280 2.2 8.1 n=3,280 69.8 9.6 6.9 4.7 3.3 30 19 0.3 60 28.0 0.7 20-24 19 0.3 1.4 25-29 60 28.0 3.9 30-34 1.7 20-24 5.7 35-39 2.7 25-29 8.2 40-44 4.5 30-34 n=2,288

More information

経済論集 46‐2(よこ)(P)☆/2.三崎

経済論集 46‐2(よこ)(P)☆/2.三崎 1 2 1869 11 17 5 10 1 3 1914 5 15 5 1872 9 12 3 1870 1 26 14 1881 11 11 12 6 11 1878 5 9 13 1880 6 17 1 15 1882 1 2 3 11 1828 2 26 24 1891 4 22 2 1849 12 1 3 1856 pp 20 21. 1971 p.429. 1973 1, pp.440 444.

More information

̤Äê

̤Äê SNS 1, IT.,.,.,., SNS,,,..,,.,,,.,.,,. 2 1 6 1.1................................................ 6 1.2................................................ 6 1.3...............................................

More information