SlideShare une entreprise Scribd logo
1  sur  25
Télécharger pour lire hors ligne
Variational Kalman Filter
Yoshiaki Sakakura
Denso IT Laboratory, INC.
DENSO IT Laboratory, INC. 1
Variational Kalman Filter(VKF)
• The Variational Kalman Filter and an Efficient Implementation using Limited Memory BFGS, Int. J. Numer. 
Meth. Fluids, 2010
– 高速・省メモリな Kalman Filter の設計法(大規模問題を想定)
– Fluids!(データ同化ってやつですか)
DENSO IT Laboratory, INC. 2
導入(1/3) : 状態空間モデル
• 構成・・・状態ダイナミクス+観測で構成される系
• 目的・・・現在・未来・過去の状態を知りたい
– 現在:フィルタ、未来:予測、過去:平滑化
• 応用・・・各種シミュレーション、トラッキング、SLAM etc…
xt‐1 xt xt+1
yt‐1 yt yt+1
状態
観測
フィルタ
平滑化 予測
,
,
~ ;
~ ;
: 1vector : 1vector
DENSO IT Laboratory, INC. 3
導入(2/3) : Kalman Filter
• 線形・ガウス型状態空間モデルを想定
• フィルタと予測を繰り返す演算
• 現在・未来の状態を知りたい
~ 0,
~ 0,
Prediction
Filtering
Initialization
← 1 and return to Prediction Step
Initialize  , and  ← 1
DENSO IT Laboratory, INC. 4
導入(3/3) : Kalman Filterの限界
• 問題が大規模になると、
– メモリの限界・・・ M×Mの密行列( : N×Nの密行列 に依存)
– 計算量の限界・・・Kalman Gain  : N×Nの逆行列計算
• ※ , , , :疎行列と仮定
Prediction
Filtering
Initialization
← 1 and return to Prediction Step
Initialize  , and  ← 1
DENSO IT Laboratory, INC. 5
VKF概要
• 目的
– 	の省メモリ表現
– を直接計算回避
• 手段
– Kalman Filter を2つの最適化問題で表現
• 本質的な問題 : Optimizer:  、Inverse Hessian : 
• 補助問題・・・上記問題を解くために必要
– L‐BFGS(Limited memory BFGS)で解法
• (Inverse)Hessianの省メモリ近似を用いる準ニュートン法
argmin by LBFGS
as LBFGS form
as LBFGS form
Prediction
Filtering
Initialization
Initialize  , and  ← 1
← 1 and return to Prediction Step
DENSO IT Laboratory, INC. 6
アウトライン
• L‐BFGS(Limited Memory BFGS)
• VKF algorithm導出
• 数値実験結果
• 関連研究との比較
• まとめ
• おまけ
DENSO IT Laboratory, INC. 7
アウトライン
• L‐BFGS(Limited Memory BFGS)
• VKF algorithm導出
• 数値実験結果
• 関連研究との比較
• まとめ
• [おまけ]
DENSO IT Laboratory, INC. 8
準ニュートン法
• 最適化の各STEPで、(inverse)Hessian を近似しながら最適化
min , ∈
Line Search 
Input:  , , , ∈
← 0
Repeat until convergence
← 1
output:  , ,
DENSO IT Laboratory, INC. 9
の算出法 BFGS公式
• 天下り!
– ポイントは更新式になっているところ
– ※ 今回はInverse Hessianを使うので、両方かいとくよー。
,
Hessian
(BFGS)
Inverse Hessian
(BFGS)
DENSO IT Laboratory, INC. 10
実は
• : 、 に最も近い、ただしセカント条件、正定値条件を満たす中で
– 最も近い : KL Divergence最小化
– セカント条件 : ヘシアンによく似ている形
– 正定値条件 ≻ : 下ってくれる
argmin KL , , ,
s.t. , ≻
,
DENSO IT Laboratory, INC. 11
L‐BFGS公式 : Inverse Hessian approximation
• の再帰展開し, 次で打ち切り で打ち切り
– メモリオーダ → : 通常 10
– 過去 回分の ,  ∈ だけ覚えておけばよい
⋯ ⋯
⋯ ⋯
⋯ ⋯
⋯
,
∈
∈
∈ :sparse
⋯ ⋯
⋯ ⋯
⋯ ⋯
⋯
Inverse Hessian
(L‐BFGS) 
DENSO IT Laboratory, INC. 12
LBFGSによる準ニュートン構成
min , ∈
Define  as LBFGS Inverse Hessian form
Line Search 
Input:  , , , ∈ :sparse, 
← 0
Repeat until convergence
Compute  sequentially
: initial search direction
← 1
Archive  , :latest  time search
output:  , , (LBFGS form)
DENSO IT Laboratory, INC. 13
アウトライン
• L‐BFGS(Limited Memory BFGS)
• VKF algorithm導出
• 数値実験結果
• 関連研究との比較
• まとめ
• [おまけ]
DENSO IT Laboratory, INC. 14
Optimizer:  ,Inverse Hessian :  を持つ最適化問題
• 事後確率 の最大化
– フィルタ演算そのもの : Kalman Filter の本質的な最適化問題
→ min.
∝
1
2
1
2
ln ∝ ln ln	
argmin
DENSO IT Laboratory, INC. 15
補助問題
• 損失関数 を効率的に計算
• をInverse Hessianにもつ最適化問題
1
2
1
2
→ min.
DENSO IT Laboratory, INC. 16
VKF Algorithm
Define auxiliary probrem 
argmin by LBFGS
as LBFGS
	as LBFGS form
Define
Define MAP loss function
|
Prediction
Filtering
Initialization
Initialize  , :sparse and  ← 1
← 1 and return to Prediction Step
DENSO IT Laboratory, INC. 17
アウトライン
• L‐BFGS(Limited Memory BFGS)
• VKF algorithm導出
• 数値実験結果
• 関連研究との比較
• まとめ
• [おまけ]
DENSO IT Laboratory, INC. 18
数値実験結果
A) Filtering Step が進むにつれKFに漸近
B) 条件によっては、初期にKFより精度が高い(筆者らは、LBFGSによる正則化効果であると主張)
C) KFではメモリ制約で実行できない場合にも適用可能
※ ちなみに、状態数=32で、計算時間は1/10まで低下らしい
状態数32
システム誤差、観測誤差パターンA
状態数32
システム誤差、観測誤差パターンB
状態数256
※KFはメモリ不足で計算できず
〇: VKF
*: KF
〇: VKF
*: KF
〇: VKF
*:LBFGS‐KF(前ver.)
問題
結果(A) 結果(B) 結果(C)
DENSO IT Laboratory, INC. 19
状態推定誤差
関連研究との比較
• 【関連研究】
– 状態・分散共分散行列の低ランク近似(以下LRA)
• 時不変基底、重みを時間発展
– Ensemble Kalman Filter(EnKF), Particle Filter(PF)
• 各推定量をサンプルで近似
• 共分散行列が退化していれば少サンプルで近似可能
• 【比較】
– モデル表現の厳密性・柔軟性
• v.s. LRA : 時変性をうまくモデル化できる(特にEKFで効く?)
• v.s. EnKF/PF : サンプリングバイアスがない(ただしガウスのみ)
• 事後確率に任意の正則化項導入(ただし諸刃の剣)
– 計算量
• LBFGSの収束性能依存(ただし超1次収束)
• LBFGS部分の並列化困難
DENSO IT Laboratory, INC. 20
アウトライン
• L‐BFGS(Limited Memory BFGS)
• VKF algorithm導出
• 数値実験結果
• 関連研究との比較
• まとめ
• [おまけ]
DENSO IT Laboratory, INC. 21
まとめ
• 【まとめ】
– Variational Kalman Filter の紹介
• LBFGSを用いた、共分散行列の省メモリ構成、Kalman Gain計算回避
– 他手法との比較(ここらへん加味して選択しよう)
• モデル表現の厳密性・柔軟性
• 計算量
DENSO IT Laboratory, INC. 22
アウトライン
• L‐BFGS(Limited Memory BFGS)
• VKF algorithm導出
• 数値実験結果
• 関連研究との比較
• まとめと今後
• [おまけ]
DENSO IT Laboratory, INC. 23
おまけ
• とはいえ、みなさんEmsembleばら撒くの好きでしょ?
– Emsemble → 高速 + 非線形 + 非ガウス
• というわけで VEnKF (Variational Ensemble Kalman Filter [SOLONEN 2012])
• EnKFに比べ少ないサンプルで高い推定精度を得ている
– だけど、ガウス
DENSO IT Laboratory, INC. 24
参考文献
• H. Auvinen et. al., The Variational Kalman Filter and an Efficient Implementation using Limited Memory 
BFGS, Int. J. Numer. Meth. Fluids, 2010
• Antti Solonen et. al., Variational Ensemble Kalman Filtering Using Limited Memory BFGS, ENTA, 2012
• 淡路敏之ら, データ同化 観測・実験とモデルを融合するイノベーション, 京都大学学術出版会, 2009
• Takafumi Kanamori et. al., A Bregman Extension of quasi‐Newton updates I: An Information Geometrical 
framework, arXiv:1010.2847, 2010
DENSO IT Laboratory, INC. 25

Contenu connexe

Tendances

シリコンスタジオの最新テクノロジーデモ技術解説
シリコンスタジオの最新テクノロジーデモ技術解説シリコンスタジオの最新テクノロジーデモ技術解説
シリコンスタジオの最新テクノロジーデモ技術解説
Silicon Studio Corporation
 

Tendances (20)

第1回NIPS読み会・関西発表資料
第1回NIPS読み会・関西発表資料第1回NIPS読み会・関西発表資料
第1回NIPS読み会・関西発表資料
 
[DL輪読会]VoxelPose: Towards Multi-Camera 3D Human Pose Estimation in Wild Envir...
[DL輪読会]VoxelPose: Towards Multi-Camera 3D Human Pose Estimation in Wild Envir...[DL輪読会]VoxelPose: Towards Multi-Camera 3D Human Pose Estimation in Wild Envir...
[DL輪読会]VoxelPose: Towards Multi-Camera 3D Human Pose Estimation in Wild Envir...
 
論文紹介: Fast R-CNN&Faster R-CNN
論文紹介: Fast R-CNN&Faster R-CNN論文紹介: Fast R-CNN&Faster R-CNN
論文紹介: Fast R-CNN&Faster R-CNN
 
[DL輪読会]YOLO9000: Better, Faster, Stronger
[DL輪読会]YOLO9000: Better, Faster, Stronger[DL輪読会]YOLO9000: Better, Faster, Stronger
[DL輪読会]YOLO9000: Better, Faster, Stronger
 
DNN音響モデルにおける特徴量抽出の諸相
DNN音響モデルにおける特徴量抽出の諸相DNN音響モデルにおける特徴量抽出の諸相
DNN音響モデルにおける特徴量抽出の諸相
 
複数話者WaveNetボコーダに関する調査
複数話者WaveNetボコーダに関する調査複数話者WaveNetボコーダに関する調査
複数話者WaveNetボコーダに関する調査
 
物体検出の歴史まとめ(1) 20180417
物体検出の歴史まとめ(1) 20180417物体検出の歴史まとめ(1) 20180417
物体検出の歴史まとめ(1) 20180417
 
形態素解析も辞書も言語モデルもいらないend-to-end音声認識
形態素解析も辞書も言語モデルもいらないend-to-end音声認識形態素解析も辞書も言語モデルもいらないend-to-end音声認識
形態素解析も辞書も言語モデルもいらないend-to-end音声認識
 
[DL輪読会] Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields
[DL輪読会] Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields [DL輪読会] Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields
[DL輪読会] Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields
 
シリコンスタジオの最新テクノロジーデモ技術解説
シリコンスタジオの最新テクノロジーデモ技術解説シリコンスタジオの最新テクノロジーデモ技術解説
シリコンスタジオの最新テクノロジーデモ技術解説
 
[DL輪読会]BANMo: Building Animatable 3D Neural Models from Many Casual Videos
[DL輪読会]BANMo: Building Animatable 3D Neural Models from Many Casual Videos[DL輪読会]BANMo: Building Animatable 3D Neural Models from Many Casual Videos
[DL輪読会]BANMo: Building Animatable 3D Neural Models from Many Casual Videos
 
You Only Look One-level Featureの解説と見せかけた物体検出のよもやま話
You Only Look One-level Featureの解説と見せかけた物体検出のよもやま話You Only Look One-level Featureの解説と見せかけた物体検出のよもやま話
You Only Look One-level Featureの解説と見せかけた物体検出のよもやま話
 
MS COCO Dataset Introduction
MS COCO Dataset IntroductionMS COCO Dataset Introduction
MS COCO Dataset Introduction
 
実践的なHDR出力対応 ~レンダリングパイプラインの構築~
実践的なHDR出力対応 ~レンダリングパイプラインの構築~実践的なHDR出力対応 ~レンダリングパイプラインの構築~
実践的なHDR出力対応 ~レンダリングパイプラインの構築~
 
Res netと派生研究の紹介
Res netと派生研究の紹介Res netと派生研究の紹介
Res netと派生研究の紹介
 
物体検知(Meta Study Group 発表資料)
物体検知(Meta Study Group 発表資料)物体検知(Meta Study Group 発表資料)
物体検知(Meta Study Group 発表資料)
 
Tesseract ocr
Tesseract ocrTesseract ocr
Tesseract ocr
 
ICCV2019読み会「Learning Meshes for Dense Visual SLAM」
ICCV2019読み会「Learning Meshes for Dense Visual SLAM」ICCV2019読み会「Learning Meshes for Dense Visual SLAM」
ICCV2019読み会「Learning Meshes for Dense Visual SLAM」
 
深層学習 第4章 大規模深層学習の実現技術
深層学習 第4章 大規模深層学習の実現技術深層学習 第4章 大規模深層学習の実現技術
深層学習 第4章 大規模深層学習の実現技術
 
ICCV19読み会 "Learning Single Camera Depth Estimation using Dual-Pixels"
ICCV19読み会 "Learning Single Camera Depth Estimation using Dual-Pixels"ICCV19読み会 "Learning Single Camera Depth Estimation using Dual-Pixels"
ICCV19読み会 "Learning Single Camera Depth Estimation using Dual-Pixels"
 

En vedette

Stochastic Process Overview (hypothesis)
Stochastic Process Overview (hypothesis)Stochastic Process Overview (hypothesis)
Stochastic Process Overview (hypothesis)
Yoshiaki Sakakura
 
Hpc server講習会第3回応用編
Hpc server講習会第3回応用編Hpc server講習会第3回応用編
Hpc server講習会第3回応用編
Osamu Masutani
 
Go-ICP: グローバル最適(Globally optimal) なICPの解説
Go-ICP: グローバル最適(Globally optimal) なICPの解説Go-ICP: グローバル最適(Globally optimal) なICPの解説
Go-ICP: グローバル最適(Globally optimal) なICPの解説
Yusuke Sekikawa
 
Sigir2013 retrieval models-and_ranking_i_pub
Sigir2013 retrieval models-and_ranking_i_pubSigir2013 retrieval models-and_ranking_i_pub
Sigir2013 retrieval models-and_ranking_i_pub
Kei Uchiumi
 
Vanishing Component Analysisの試作(補足)
Vanishing Component Analysisの試作(補足)Vanishing Component Analysisの試作(補足)
Vanishing Component Analysisの試作(補足)
Hiroshi Tsukahara
 
Notes on the low rank matrix approximation of kernel
Notes on the low rank matrix approximation of kernelNotes on the low rank matrix approximation of kernel
Notes on the low rank matrix approximation of kernel
Hiroshi Tsukahara
 

En vedette (20)

On the eigenstructure of dft matrices(in japanese only)
On the eigenstructure of dft matrices(in japanese only)On the eigenstructure of dft matrices(in japanese only)
On the eigenstructure of dft matrices(in japanese only)
 
FLAT CAM: Replacing Lenses with Masks and Computationの解説
FLAT CAM: Replacing Lenses with Masks and Computationの解説FLAT CAM: Replacing Lenses with Masks and Computationの解説
FLAT CAM: Replacing Lenses with Masks and Computationの解説
 
Stochastic Process Overview (hypothesis)
Stochastic Process Overview (hypothesis)Stochastic Process Overview (hypothesis)
Stochastic Process Overview (hypothesis)
 
Hpc server講習会第3回応用編
Hpc server講習会第3回応用編Hpc server講習会第3回応用編
Hpc server講習会第3回応用編
 
マーク付き点過程
マーク付き点過程マーク付き点過程
マーク付き点過程
 
Holonomic Gradient Descent
Holonomic Gradient DescentHolonomic Gradient Descent
Holonomic Gradient Descent
 
Go-ICP: グローバル最適(Globally optimal) なICPの解説
Go-ICP: グローバル最適(Globally optimal) なICPの解説Go-ICP: グローバル最適(Globally optimal) なICPの解説
Go-ICP: グローバル最適(Globally optimal) なICPの解説
 
Extreme Learning Machine
Extreme Learning MachineExtreme Learning Machine
Extreme Learning Machine
 
Halide, Darkroom - 並列化のためのソフトウェア・研究
Halide, Darkroom - 並列化のためのソフトウェア・研究Halide, Darkroom - 並列化のためのソフトウェア・研究
Halide, Darkroom - 並列化のためのソフトウェア・研究
 
論文紹介:Practical bayesian optimization of machine learning algorithms(nips2012)
論文紹介:Practical bayesian optimization of machine learning algorithms(nips2012)論文紹介:Practical bayesian optimization of machine learning algorithms(nips2012)
論文紹介:Practical bayesian optimization of machine learning algorithms(nips2012)
 
確率ロボティクス第13回
確率ロボティクス第13回確率ロボティクス第13回
確率ロボティクス第13回
 
Sigir2013 retrieval models-and_ranking_i_pub
Sigir2013 retrieval models-and_ranking_i_pubSigir2013 retrieval models-and_ranking_i_pub
Sigir2013 retrieval models-and_ranking_i_pub
 
Information extraction 1
Information extraction 1Information extraction 1
Information extraction 1
 
Vanishing Component Analysisの試作(補足)
Vanishing Component Analysisの試作(補足)Vanishing Component Analysisの試作(補足)
Vanishing Component Analysisの試作(補足)
 
Windows Store アプリをuniversal にして申請する手順
Windows Store アプリをuniversal にして申請する手順Windows Store アプリをuniversal にして申請する手順
Windows Store アプリをuniversal にして申請する手順
 
Notes on the low rank matrix approximation of kernel
Notes on the low rank matrix approximation of kernelNotes on the low rank matrix approximation of kernel
Notes on the low rank matrix approximation of kernel
 
Windows HPC Server 講習会 第1回 導入編 1/2
Windows HPC Server 講習会 第1回 導入編 1/2Windows HPC Server 講習会 第1回 導入編 1/2
Windows HPC Server 講習会 第1回 導入編 1/2
 
Windows HPC Server 講習会 第2回 開発編
Windows HPC Server 講習会 第2回 開発編Windows HPC Server 講習会 第2回 開発編
Windows HPC Server 講習会 第2回 開発編
 
Gitのすすめ
GitのすすめGitのすすめ
Gitのすすめ
 
DSIRNLP06 Nested Pitman-Yor Language Model
DSIRNLP06 Nested Pitman-Yor Language ModelDSIRNLP06 Nested Pitman-Yor Language Model
DSIRNLP06 Nested Pitman-Yor Language Model
 

Similaire à Variational Kalman Filter

An Experimental Study of Bitmap Compression vs. Inverted List Compression
An Experimental Study of Bitmap Compression vs. Inverted List CompressionAn Experimental Study of Bitmap Compression vs. Inverted List Compression
An Experimental Study of Bitmap Compression vs. Inverted List Compression
Takeshi Yamamuro
 
研究動向から考えるx86/x64最適化手法
研究動向から考えるx86/x64最適化手法研究動向から考えるx86/x64最適化手法
研究動向から考えるx86/x64最適化手法
Takeshi Yamamuro
 
Learning Deep Architectures for AI (第 3 回 Deep Learning 勉強会資料; 松尾)
Learning Deep Architectures for AI (第 3 回 Deep Learning 勉強会資料; 松尾)Learning Deep Architectures for AI (第 3 回 Deep Learning 勉強会資料; 松尾)
Learning Deep Architectures for AI (第 3 回 Deep Learning 勉強会資料; 松尾)
Ohsawa Goodfellow
 

Similaire à Variational Kalman Filter (20)

猫でも分かるVariational AutoEncoder
猫でも分かるVariational AutoEncoder猫でも分かるVariational AutoEncoder
猫でも分かるVariational AutoEncoder
 
PFI Christmas seminar 2009
PFI Christmas seminar 2009PFI Christmas seminar 2009
PFI Christmas seminar 2009
 
An Experimental Study of Bitmap Compression vs. Inverted List Compression
An Experimental Study of Bitmap Compression vs. Inverted List CompressionAn Experimental Study of Bitmap Compression vs. Inverted List Compression
An Experimental Study of Bitmap Compression vs. Inverted List Compression
 
研究動向から考えるx86/x64最適化手法
研究動向から考えるx86/x64最適化手法研究動向から考えるx86/x64最適化手法
研究動向から考えるx86/x64最適化手法
 
(文献紹介)Deep Unrolling: Learned ISTA (LISTA)
(文献紹介)Deep Unrolling: Learned ISTA (LISTA)(文献紹介)Deep Unrolling: Learned ISTA (LISTA)
(文献紹介)Deep Unrolling: Learned ISTA (LISTA)
 
20180427 arXivtimes 勉強会: Cascade R-CNN: Delving into High Quality Object Det...
20180427 arXivtimes 勉強会:  Cascade R-CNN: Delving into High Quality Object Det...20180427 arXivtimes 勉強会:  Cascade R-CNN: Delving into High Quality Object Det...
20180427 arXivtimes 勉強会: Cascade R-CNN: Delving into High Quality Object Det...
 
Deep learning実装の基礎と実践
Deep learning実装の基礎と実践Deep learning実装の基礎と実践
Deep learning実装の基礎と実践
 
Learning Deep Architectures for AI (第 3 回 Deep Learning 勉強会資料; 松尾)
Learning Deep Architectures for AI (第 3 回 Deep Learning 勉強会資料; 松尾)Learning Deep Architectures for AI (第 3 回 Deep Learning 勉強会資料; 松尾)
Learning Deep Architectures for AI (第 3 回 Deep Learning 勉強会資料; 松尾)
 
2012-03-08 MSS研究会
2012-03-08 MSS研究会2012-03-08 MSS研究会
2012-03-08 MSS研究会
 
音声認識と深層学習
音声認識と深層学習音声認識と深層学習
音声認識と深層学習
 
2020 03 05_mar_revenshtein_transformer_tmu_homma
2020 03 05_mar_revenshtein_transformer_tmu_homma2020 03 05_mar_revenshtein_transformer_tmu_homma
2020 03 05_mar_revenshtein_transformer_tmu_homma
 
NodeFest2014 - Transpiler
NodeFest2014 - TranspilerNodeFest2014 - Transpiler
NodeFest2014 - Transpiler
 
CRF を使った Web 本文抽出
CRF を使った Web 本文抽出CRF を使った Web 本文抽出
CRF を使った Web 本文抽出
 
検索評価ツールキットNTCIREVALを用いた様々な情報アクセス技術の評価方法
検索評価ツールキットNTCIREVALを用いた様々な情報アクセス技術の評価方法検索評価ツールキットNTCIREVALを用いた様々な情報アクセス技術の評価方法
検索評価ツールキットNTCIREVALを用いた様々な情報アクセス技術の評価方法
 
第11回 配信講義 計算科学技術特論B(2022)
第11回 配信講義 計算科学技術特論B(2022)第11回 配信講義 計算科学技術特論B(2022)
第11回 配信講義 計算科学技術特論B(2022)
 
attention_is_all_you_need_nips17_論文紹介
attention_is_all_you_need_nips17_論文紹介attention_is_all_you_need_nips17_論文紹介
attention_is_all_you_need_nips17_論文紹介
 
Sparkパフォーマンス検証
Sparkパフォーマンス検証Sparkパフォーマンス検証
Sparkパフォーマンス検証
 
Zabbix-jp study #4 20111020 session2
Zabbix-jp study #4 20111020 session2Zabbix-jp study #4 20111020 session2
Zabbix-jp study #4 20111020 session2
 
(文献紹介)エッジ保存フィルタ:Side Window Filter, Curvature Filter
(文献紹介)エッジ保存フィルタ:Side Window Filter, Curvature Filter(文献紹介)エッジ保存フィルタ:Side Window Filter, Curvature Filter
(文献紹介)エッジ保存フィルタ:Side Window Filter, Curvature Filter
 
CCMSI計算科学技術特論A (2015) 第7回 線形代数演算ライブラリBLASとLAPACKの基礎と実践2
CCMSI計算科学技術特論A (2015) 第7回 線形代数演算ライブラリBLASとLAPACKの基礎と実践2CCMSI計算科学技術特論A (2015) 第7回 線形代数演算ライブラリBLASとLAPACKの基礎と実践2
CCMSI計算科学技術特論A (2015) 第7回 線形代数演算ライブラリBLASとLAPACKの基礎と実践2
 

Dernier

Dernier (11)

Observabilityは従来型の監視と何が違うのか(キンドリルジャパン社内勉強会:2022年10月27日発表)
Observabilityは従来型の監視と何が違うのか(キンドリルジャパン社内勉強会:2022年10月27日発表)Observabilityは従来型の監視と何が違うのか(キンドリルジャパン社内勉強会:2022年10月27日発表)
Observabilityは従来型の監視と何が違うのか(キンドリルジャパン社内勉強会:2022年10月27日発表)
 
論文紹介:Video-GroundingDINO: Towards Open-Vocabulary Spatio-Temporal Video Groun...
論文紹介:Video-GroundingDINO: Towards Open-Vocabulary Spatio-Temporal Video Groun...論文紹介:Video-GroundingDINO: Towards Open-Vocabulary Spatio-Temporal Video Groun...
論文紹介:Video-GroundingDINO: Towards Open-Vocabulary Spatio-Temporal Video Groun...
 
新人研修 後半 2024/04/26の勉強会で発表されたものです。
新人研修 後半        2024/04/26の勉強会で発表されたものです。新人研修 後半        2024/04/26の勉強会で発表されたものです。
新人研修 後半 2024/04/26の勉強会で発表されたものです。
 
論文紹介:Selective Structured State-Spaces for Long-Form Video Understanding
論文紹介:Selective Structured State-Spaces for Long-Form Video Understanding論文紹介:Selective Structured State-Spaces for Long-Form Video Understanding
論文紹介:Selective Structured State-Spaces for Long-Form Video Understanding
 
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイス
LoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイスLoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイス
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイス
 
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
 
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
 
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアルLoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
 
Utilizing Ballerina for Cloud Native Integrations
Utilizing Ballerina for Cloud Native IntegrationsUtilizing Ballerina for Cloud Native Integrations
Utilizing Ballerina for Cloud Native Integrations
 
知識ゼロの営業マンでもできた!超速で初心者を脱する、悪魔的学習ステップ3選.pptx
知識ゼロの営業マンでもできた!超速で初心者を脱する、悪魔的学習ステップ3選.pptx知識ゼロの営業マンでもできた!超速で初心者を脱する、悪魔的学習ステップ3選.pptx
知識ゼロの営業マンでもできた!超速で初心者を脱する、悪魔的学習ステップ3選.pptx
 
論文紹介: The Surprising Effectiveness of PPO in Cooperative Multi-Agent Games
論文紹介: The Surprising Effectiveness of PPO in Cooperative Multi-Agent Games論文紹介: The Surprising Effectiveness of PPO in Cooperative Multi-Agent Games
論文紹介: The Surprising Effectiveness of PPO in Cooperative Multi-Agent Games
 

Variational Kalman Filter