SlideShare a Scribd company logo
1 of 18
Download to read offline
6. 畳込みニューラルネット
6章概要
畳込みニューラルネットワーク(CNN)は、画像認識でよく扱われる順伝播型
ネットワーク。全結合ではない、特定のユニットのみが結合する特別な層
畳込み層:畳込み(画像とフィルタの積和計算)を行う層。フィルタの
パターンに類似したパターンを画像から抽出するはたらきをもつ。
プーリング層:位置に対する感度を低下させることで、汎用性を上げる
処理、「プーリング」を行う層
の2つを主な特徴としてもつ。生物の視覚野に関する知見を元にした機構をもち、
パターン認識や物体カテゴリ認識の問題において多く用いられる。
実際に構成される際にはこれらに加えて正規化処理を行う正規化層や最後に
全結合層を組み込んで構成される。
・畳込みニューラルネット
6. 畳込みニューラルネット
畳込みニューラルネット(Convolutional neural network)は画像認識でよく扱われる
順伝播型ネットワーク。これまでのネットワークと異なり、隣接層のユニットが
全結合されたものだけでなく特定のユニットのみが結合を持つ特別な層を持つ。
この構造は生物の脳の視覚野に関する神経科学の知見を ヒントにしている。
具体的には、視覚野における神経細胞の受容野(入力を受け取る部分)の局所性と、
単純型細胞および複雑型細胞の存在である。
どちらの細胞も特定の入力パターンに対応するが、複雑型細胞の方が位置選択性が
厳密ではない。これらの振る舞いは2層ネットワークでモデル化でき、このような
構造を工学的なパターン認識に初めて用いたのがネオコグニトロンである。
CNNは現在、物体カテゴリ認識などに用いられるとともに、多層のCNNが霊長類の
脳の高次視覚野と似た振る舞いを示すことが実験的に示されている。
・CNNの構造
6. 畳込みニューラルネット
主に以下の層で構成される
・畳込み層(Convolutional Layer)
・プーリング層(Pooling Layer)
*局所コントラスト正規化層(LocalContrast Normalization Layer)
※使われる場合もある
・全結合層(Fully-connected Layer)
よく使われるCNNの構造としては、入力から出力に向けて、畳込み層とプーリング層
のペアが繰り返された後、全結合層を通して出力するものがある。
ここで、全結合層はこれまでの順伝播型ネットワークの各層と同様である。
・畳込み
6. 畳込みニューラルネット
画像(W×W画素)にフィルタと呼ぶサイズの小さい(H×H画素)画像との間で
行われる積和計算。
𝑢𝑖𝑖 = � � 𝑥𝑖+𝑝,𝑗+𝑞ℎ 𝑝𝑝
𝐻−1
𝑞=0
𝐻−1
𝑝=0
畳込みでは、フィルタのパターンに類似したパターンを画像から抽出するはたらきを
もつ。(以下図参照)また、画素値は負の値を含む実数値である。
・パディング
6. 畳込みニューラルネット
畳込みは画像とフィルタの積和計算であるが、画像からフィルタがはみ出す位置で
重ねることは本来できない。そのため、画像内にフィルタが収まる範囲内でフィルタ
を動かすと、畳込み結果の画像は 入力より小さくなる
(𝑊 − 2 𝐻 2⁄ ) × (𝑊 − 2 𝐻 2⁄ )
式では上記のように表せる。
しかし、入力画像と同サイズにした方が便利な場合があるので、そこで行われる処理
がこのパディングである。具体的には、入力画像の外側に幅 𝐻 2⁄ の「ふち」をつけ
て大きくすることで、出力画像が入力画像と同サイズになるようにする。
「ふち」部分の画素値は未定であるため、この値を何らかの手法で決める必要がある。
様々な手法があるが、一般的に「0」にセットするゼロパディングが用いられる。
・ストライド
6. 畳込みニューラルネット
ここまでは、画像上を縦横方向に1画素ずつフィルタをずらしながら積和計算を
行っていたが、これを数画素ずつずらして計算を行う 手法がある。このときの
フィルタの適用位置の間隔をストライドと呼ぶ。
ストライドをsとしたときの出力画像の画素値は
𝑢𝑖𝑖 = � � 𝑥 𝑠𝑖+𝑝,𝑠𝑗+𝑞ℎ 𝑝𝑝
𝐻−1
𝑞=0
𝐻−1
𝑝=0
と計算され、サイズは約1/s倍になる。ただしパディングを行う場合にはサイズは
( (𝑊 − 1) 𝑠⁄ + 1) × ( (𝑊 − 1) 𝑠⁄ + 1)
と計算される。
・畳込み層 (Convolutional Layer)
6. 畳込みニューラルネット
畳込みの演算を行う単層ネットワーク。実用的には、RGBカラー画像などの
多チャネル の画像に対して、複数個のフィルタを並行して畳込む場合が多い。
チャネル数Kを入力に受け取るが、中間層(畳込み層やプーリング層)では
一般にそれ以上のチャネル数を扱うことが多い。
このとき、チャネルKの画像(W×W×K)をマップと呼ぶことがある。
この畳込み層が第𝑙層であり、直前の第𝑙 + 1層からKチャネルの画像を受け取り
M種類のフィルタを適用するとき、式は
𝑢𝑖𝑖𝑚 = � � � 𝑧𝑖+𝑝,𝑗+𝑞,𝑘
(𝑙−1)
ℎ 𝑝𝑝𝑝𝑝
𝐻−1
𝑞=0
𝐻−1
𝑝=0
𝐾−1
𝑘=0
+ 𝑏𝑖𝑖𝑖
と表せます。ここではバイアスを導入しているが、バイアスはフィルタごとに
各ユニット共通(𝑏𝑖𝑖𝑖 = 𝑏 𝑚)とするのが一般的。
6. 畳込みニューラルネット
前述のように求めた𝑢𝑖𝑖𝑖に活性化関数を適用し
𝑧𝑖𝑖𝑖 = 𝑓(𝑢𝑖𝑖𝑖)
としたものが畳込み層の最終的な出力である。そのため、入力のサイズが
W×W×Kのとき、出力はW×W×Mとなる。また、この重みは出力層の同一
チャネルの全ユニットで同じである(重み共有)。
・プーリング層(Pooling Layer)
6. 畳込みニューラルネット
プーリング層は通常、畳込み層の直後に設置される。プーリング層の各ユニットは
前述の複雑型細胞のモデル になっており、位置に対する感度を若干低下させている。
具体的には、画像(W×W×K)上で画素(I,j)を中心とするH×H正方領域に含まれる
画素の集合を𝑃𝑖𝑖とし、チャネルごとに独立にこれらの集合から1つの画素値を求める。
いくつかの方法があるが、最大プーリングでは集合の中の最大値を選ぶ。
𝑢𝑖𝑖𝑖 = max
(𝑝,𝑞)∈𝑃 𝑖𝑖
𝑧 𝑝𝑝𝑝
平均プーリングでは集合の平均値を求める。
𝑢𝑖𝑖𝑖 =
1
𝐻2
� 𝑧 𝑝𝑝𝑝
(𝑝,𝑞)∈𝑃 𝑖𝑖
チャネルごとに独立してプーリングは行われるため、一般にプーリング層の出力
チャネルは入力と一致する。
6. 畳込みニューラルネット
前述のプーリングを含む一般的な表記としてLpプーリングと表せる。
𝑢𝑖𝑖𝑖 =
1
𝐻2
� 𝑧 𝑝𝑝𝑝
𝑃
(𝑝,𝑞)∈𝑃 𝑖𝑖
1
𝑃
このとき、P=1で平均プーリング、P=∞で最大プーリングである。
畳込み層と同様にプーリング層でもストライドを設定でき、2以上のストライドが
一般的である。プーリング層では活性化関数を適用しないのが一般的である。
プーリング層では結合の重みが固定されているため、学習によってパラメータが
変化することはない。
・正規化層
6. 畳込みニューラルネット
自然画像を入力とする画像認識の問題では、入力画像の全体的な明るさや
コン トラストの違いをうまく吸収する必要があるため正規化が必要となる。
まず1つの手法として、画像の集合に対して統計量を揃える処理がある。
3章で述べた正規化や5章で述べた白色化などがこれにあたる。
もう1つの手法として、局所コントラスト正規化と呼ばれる画像1枚1枚に対して
個別に行う処理がある。CNN固有の処理ではない一般的な画像処理の1つで、
畳込み層やプーリング層同様に1つの層で処理を実現できる。また、プーリング層と
同様に学習するパラメータはない。
局所コントラスト正規化は減算正規化と除算正規化の2つがある。
・減算正規化
6. 畳込みニューラルネット
プーリングと同様に画素(I,j)を中心とするH×H正方領域に含まれる画素の集合𝑃𝑖𝑖を
考える。この集合の画素の平均値を入力画像の各画素から差し引くのが減算正規化で
ある。
𝑧𝑖𝑖 = 𝑥𝑖𝑖 − 𝑥𝑖𝑖 = 𝑥𝑖𝑖 − � 𝑥𝑖+𝑝,𝑗+𝑞
(𝑝,𝑞)∈𝑃 𝑖𝑖
また、平均には重み付き平均を用いる場合もある。
𝑥𝑖𝑖 = � 𝑤 𝑝𝑝 𝑥𝑖+𝑝,𝑗+𝑞
(𝑝,𝑞)∈𝑃 𝑖𝑖
この場合、重みは
� 𝑤 𝑝𝑝
(𝑝,𝑞)∈𝑃 𝑖𝑖
= � � 𝑤 𝑝𝑝
𝐻−1
𝑞=0
𝐻−1
𝑝=0
= 1
であり、領域の中央で最大値をとり、周辺部へ向けて低下するようなもの である。
6. 畳込みニューラルネット
多チャネルの場合、チャネル間の相互作用を考えて重み付き平均を
𝑥̅ 𝑖𝑖 =
1
𝐾
� � 𝑤 𝑝𝑝 𝑥𝑖+𝑝,𝑗+𝑞,𝑘
(𝑝,𝑞)∈𝑃 𝑖𝑖
𝐾−1
𝑘=0
として適用する。
減算正規化に加えてさらに画素値の分散を揃える操作。領域内の分散は
𝜎𝑖𝑖
2
= � 𝑤 𝑝𝑝 𝑥𝑖+𝑝,𝑗+𝑞 − 𝑥̅ 𝑖𝑖
2
(𝑝,𝑞)∈𝑃 𝑖𝑖
と表せて、減算正規化した値をこの標準偏差で割る。
𝑧𝑖𝑖 =
𝑥𝑖𝑖 − 𝑥̅ 𝑖𝑖
𝜎𝑖𝑖
・減算正規化
6. 畳込みニューラルネット
しかしこの計算そのままでは、コントラストが小さい局所領域ほど濃淡が増幅されて
しまい、画像のノイズが強調されることなどになってしまう。
そこで、入力画像のコントラストが大きい部分にのみ適用するために、
標準偏差がある定数cを下回るときはcで除算する
𝑧𝑖𝑖 =
𝑥𝑖𝑖 − 𝑥̅ 𝑖𝑖
max(𝑐, 𝜎𝑖𝑖)
や、同様の効果がに応じて連続的に変化する
𝑧𝑖𝑖 =
𝑥𝑖𝑖 − 𝑥̅ 𝑖𝑖
𝑐 + 𝜎𝑖𝑖
2
を用いる。多チャネルの場合、局所領域の分散は
𝜎𝑖𝑖
2
=
1
𝐾
� � 𝑤 𝑝𝑝 𝑥𝑖+𝑝,𝑗+𝑞,𝑘 − 𝑥̅ 𝑖𝑖
2
(𝑝,𝑞)∈𝑃 𝑖𝑖
𝐾−1
𝑘=0
のように計算される。
・勾配の計算
6. 畳込みニューラルネット
CNNでもこれまでと同様に勾配降下法によるパラメータ最適化を行う。
まず、畳込み層は順伝播型ネットワークの中間層と同様に
𝒖(𝑙) = 𝑾(𝑙) 𝒛(𝑙−1) + 𝒃(𝑙)
𝒛(𝑙) = 𝑓(𝑙)(𝒖 𝑙 )
で表せる。ここで、重みWはH×H×KのM個のフィルタの係数ℎ 𝑝𝑝𝑝𝑝を畳込みを
再現するように規則的に並べたものである。
具体的には、フィルタの係数ℎ 𝑝𝑝𝑝𝑝を適当な順で並べた成分数H×H×K×Mの
ベクトルhと、 hと内積をとると𝑙 − 1層のユニット𝑖と𝑙層のユニットj間の重み
𝑤𝑗𝑗を与えるベクトル𝑡𝑗𝑗を定義する。
𝑤𝑗𝑗 = 𝑡𝑗𝑗
𝑇
𝒉
6. 畳込みニューラルネット
𝑡𝑗𝑗は高々1つの成分が1をとり、それ以外は0となるベクトル。 𝑡𝑗𝑗の成分を𝑡𝑗𝑗𝑟と
書き、rを固定したとき𝑡𝑗𝑗𝑗を(j,i)成分にもつ行列を𝑇𝑟とする。
この層のデルタを𝜹(𝑙)と書き、全結合層に対する勾配計算の式から重みの勾配は
𝜕𝑾 = 𝜹(𝑙)
𝒛(𝑙−1) 𝑇
と与えられる。しかし、重みWの多くは0または重み共有された同じ変数であるため
にフィルタの係数hについての勾配に以下のように変形する。
𝜕𝒉 𝑟 = � 𝑻 𝑟⨀𝜕𝑾 𝑗𝑗
𝑖,𝑗
また、デルタは以下のように計算される。
𝜹(𝑙)
= 𝑓(𝑙)′
𝒖(𝑙)
⨀ 𝑾 𝑙+1 𝑇
𝜹(𝑙+1)
6. 畳込みニューラルネット
プーリング層では学習は行わないが、デルタの逆伝播計算は必要であるため、
プーリングの種類ごとにを以下のように定める。(以下は平均プーリングの例)
𝑤𝑗𝑗
(𝑙+1)
= �
1
𝐻2
𝑖𝑖 𝑖 ∈ 𝑃𝑗
0 𝑜𝑜ℎ𝑒𝑒𝑒𝑒𝑒𝑒
最大プーリングでは、ユニットjの同受容野内で順伝播計算時に最大値を与えた
入力層のユニットiのみ𝑤𝑗𝑗 = 1とし、それ以外を0とする。

More Related Content

Recently uploaded

【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)Hiroki Ichikura
 
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Yuma Ohgami
 
論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNetToru Tamaki
 
Postman LT Fukuoka_Quick Prototype_By Daniel
Postman LT Fukuoka_Quick Prototype_By DanielPostman LT Fukuoka_Quick Prototype_By Daniel
Postman LT Fukuoka_Quick Prototype_By Danieldanielhu54
 
論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A surveyToru Tamaki
 
TSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdfTSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdftaisei2219
 
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略Ryo Sasaki
 
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...Toru Tamaki
 
スマートフォンを用いた新生児あやし動作の教示システム
スマートフォンを用いた新生児あやし動作の教示システムスマートフォンを用いた新生児あやし動作の教示システム
スマートフォンを用いた新生児あやし動作の教示システムsugiuralab
 
SOPを理解する 2024/04/19 の勉強会で発表されたものです
SOPを理解する       2024/04/19 の勉強会で発表されたものですSOPを理解する       2024/04/19 の勉強会で発表されたものです
SOPを理解する 2024/04/19 の勉強会で発表されたものですiPride Co., Ltd.
 

Recently uploaded (10)

【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
 
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
 
論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet
 
Postman LT Fukuoka_Quick Prototype_By Daniel
Postman LT Fukuoka_Quick Prototype_By DanielPostman LT Fukuoka_Quick Prototype_By Daniel
Postman LT Fukuoka_Quick Prototype_By Daniel
 
論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey
 
TSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdfTSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdf
 
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
 
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
 
スマートフォンを用いた新生児あやし動作の教示システム
スマートフォンを用いた新生児あやし動作の教示システムスマートフォンを用いた新生児あやし動作の教示システム
スマートフォンを用いた新生児あやし動作の教示システム
 
SOPを理解する 2024/04/19 の勉強会で発表されたものです
SOPを理解する       2024/04/19 の勉強会で発表されたものですSOPを理解する       2024/04/19 の勉強会で発表されたものです
SOPを理解する 2024/04/19 の勉強会で発表されたものです
 

Featured

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 

Featured (20)

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 

深層学習(講談社)のまとめ 第6章