SlideShare a Scribd company logo
1 of 33
Download to read offline
DEEP LEARNING JP
[DL Papers]
Unpaired Image Super-Resolution
Using Pseudo-Supervision
Presenter: Yuki Kondo https://yuki-11.github.io/
(Toyota Technological Institute, Intelligent Information Media Lab)
http://deeplearning.jp/
2021. 11. 19
1
Yuki Kondo @ TTI-J
Yuki Kondo @ TTI-J 2
1.論⽂情報・概要
2.導⼊・先⾏研究
3.提案⼿法
4.実験結果
5.結論・所感
Section
1.論⽂情報・概要
2.導⼊・先⾏研究
3.提案⼿法
4.実験結果
5.結論・所感
Section
Yuki Kondo @ TTI-J
3
• URL
論⽂※︓
https://openaccess.thecvf.com/content_CVPR_2020/html/Maed
a_Unpaired_Image_Super-Resolution_Using_Pseudo-
Supervision_CVPR_2020_paper.html
コード︓公式コードは⾮公開
(⾮公式コード︓https://github.com/yoon28/pseudo-sr )
論⽂情報
• 論⽂名
Unpaired Image Super-Resolution Using
Pseudo-Supervision(CVPR2020)
• 著者
Shunta Maeda (Navier Inc.)
4
※出典が明記されていない図表は当論⽂より引⽤ Yuki Kondo @ TTI-J
論⽂概要
[ タスク ]
• Unpaired Super-Resolution(SR)︓
低解像(LR)画像と⾼解像(HR)画像がアンペアなデータセットを⽤いたSR
⇒ モデル化が困難な多様な劣化要因を持つ現実世界のLR画像に対応したSRを実現
5
Yuki Kondo @ TTI-J
疑似LR
リアルLR
(リアル)HR
Bicubic等の
ダウンスケーリング
ドメイン
ギャップ
Unpaired dataset
Paired dataset
論⽂概要
[ 提案⼿法 ]
• GANを⽤いた2つのネットワークから成るUnpaired SR法を提案
• 補正ネットワーク︓Real LR ⇒ Clean LRへ変換
• SRネットワーク︓Clean LR ⇒ HR へ超解像
[ 結果 ]
• 多様なデータセットを⽤いた実験により,従来⼿法よりも
優れた結果を獲得
6
Yuki Kondo @ TTI-J
・・
・⾃然画像を模擬した合成劣化画像データセット 2種
・実世界の顔画像データセット
・実世界の航空写真データセット
論⽂概要
[ 補⾜情報 ]
• 提案⼿法がシャープの最新スマホ
「AQUOS R6」に搭載.
⇒ 論⽂投稿から約1年半で実⽤化
(スピード感がすごい)
7
Yuki Kondo @ TTI-J
[1] @shunk031. https://twitter.com/shunk031/status/1422116148691099649?s=20. (最終参照⽇ 2021/11/18)
[2] PRETIMES. “シャープの最新スマホ「AQUOS R6」に画像処理のAIスタートアップNavierのAI技術が搭載”.
https://prtimes.jp/main/html/rd/p/000000004.000060134.html. (最終参照⽇ 2021/11/18)
[1] (@shunk031さんより掲載了承済み)
[2]
8
1.論⽂情報・概要
2.導⼊・先⾏研究
3.提案⼿法
4.実験結果
5.結論・所感
Section
Yuki Kondo @ TTI-J
Super Resolution (SR)
• LR画像をHR化する技術
• 不良設定問題 (1つのLRに対し,複数のHRが存在する)
• ⼀般的な(paired) SRの学習法:
• ⾃⼰教師あり学習 (ダウンスケーリングで学習ペア獲得)
9
[1] Set5: Marco Bevilacqua et al. in Low-Complexity Single-Image Super-Resolution based on Nonnegative Neighbor Embedding Yuki Kondo @ TTI-J
LR画像(ILR)
SR画像(ISR)
超解像
[1
]
HR画像(IHR)
ダウン
スケーリング
ダウンスケーリングが現実的ではない
現実に則したSRへのアプローチ
• 特殊なハードウェア + 補正プロセス
• 実世界のLR, HRペアを撮影から⽣成可能
• デバイスが特殊で実⽤が難しい(拡張しづらい)
• Blind SR (過去の輪読会で紹介した論⽂︓KOALAnet)
• 劣化がブラインドされたLRから,劣化要因を
推定し,SRを⾏う
• 主にブラーに焦点を当てており,複合的な
劣化を扱った⼿法がほとんどない
• Unpaired SR
• UnpairedなLRとHRを⽤いて,SRを⾏う
• LRドメインが持つ任意の劣化への対応に焦点を当てている
10
Yuki Kondo @ TTI-J
J. Cai + ICCV2019
S. Bell-Kligler + NeurIPS 2019
直接法 [Y. Yuan+ CVPR(WS)2018 ]
• HR⽣成器︓ソースLR画像からターゲットHRとだますよう,
アップスケーリングされたHRを⽣成
• HR識別機︓アップスケーリングされたHRとターゲットHRを識別
11
[ 問題 ]
⽣成器に対し,歪み抑制・知覚的品質担保に重要なHR再構成の損失が取れない
Yuki Kondo @ TTI-J
• LR⽣成器︓ソースHR画像からターゲットLRとだますよう,
ダウンスケールされたLRを⽣成
• LR識別機︓ダウンスケールされたLRとターゲットLRを識別
12
[ 問題 ]
⽣成されるLR分布と真のLR分布にギャップが⽣じる ⇒ テスト時の性能低下
Yuki Kondo @ TTI-J
間接法 [A. Bulat+ ECCV2018, A. Lugmayr+ arXiv2019]
1.論⽂情報・概要
2.導⼊・先⾏研究
3.提案⼿法
4.実験結果
5.結論・所感
Section
Yuki Kondo @ TTI-J
13
アーキテクチャ概要
• Unpaierd 補正ネットワークとPaierd SRネットワークに分離
• 直接法と間接法の⽋点を同時に克服
14
Yuki Kondo @ TTI-J
Unpaierd 補正ネットワーク- LRドメイン適応
• CycleGAN[J. Y. Zhu+ ICCV2017]ベースのモデルを利⽤
• Real LRドメインをClean LRドメインにサイクル機構によって,適応させる
15
Yuki Kondo @ TTI-J
Real LR Clean LR
• 複数のlossの制約から,
ドメイン間のマッピングを学習
LRドメイン適応 (Loss)
16
Yuki Kondo @ TTI-J
[3] I. J. Goodfellow +. NeurIPS2014.
[4] J. Y. Zhu +. ICCV2017.
[5] H. Fu +. CVPR2019.
𝐺!"↓の loss︓
:
Adversarial loss [3] (𝐷!↓も最適化)
:
Identity mapping loss [4] : ⾊のばらつきを抑制
:
Cycle consistency loss [4] : この論⽂では⽚側サイクルの
みに制約をかけることで,1対多のマッピングを許容.
⇒ 多様な劣化への対応を𝑮𝑿𝒀↓に学習させる.
:
Geometric ensemble loss [5] : ⼊⼒画像へのフリップや
回転に対して,幾何学的整合性を担保させるloss.
𝑇% ,𝑇%
&'
はそれぞれ画像へ与える変換と逆変換.
𝐺"↓!の loss︓
:
Adversarial loss (𝐷(も最適化)
:
Cycle consistency loss
Real LR Clean LR
• PatchGAN [1, 2]で局所的構造を担保.
• Real LR→Clean LRは⾮常に深いSRネットワークのRCANを利⽤(Upscale省略).
LRドメイン適応 (モデル)
17
Yuki Kondo @ TTI-J
, : PatchGAN [6, 7]
Conv1
LeakeyReLU
Conv5
LeakeyReLU
Batch
norm
・・・
5 conv layers
: RCAN [8]ベース(RCAB: 10個,RG: 5個, Upscale省略)
,
• 5×5ConvのResBlock
• 1×1 Conv
• Batch norm
• LeakyReLU から構成.
RGB画像と歪みを模擬した1chランダム
ノイズの特徴を抽出し,Real LRを⽣成.
[6] C. Isola +. CVPR2017.
[7] C. Li +. ECCV2016.
[8] Y. Zhang +. ECCV2018.
Paierd SRネットワーク
• 疑似clean-LRを𝑈!↓!でアップスケーリング
• HR画像をペアとして再構成するように学習
18
Yuki Kondo @ TTI-J
Paierd SRネットワーク ( Loss ・ モデル )
• ペアで学習させるため,ピクセル単位の任意のlossを利⽤可能
• 既存のPaird SRモデルの転移利⽤可(ネットワークを分離しているため)
19
Yuki Kondo @ TTI-J
: RCAN ベース(RCAB: 20個,RG: 5個)
𝑈"↓"の loss︓
: L1 loss
Perceptual loss, texture loss 等の
ピクセル単位のlossに代替可能
* 𝐷!↑の学習時は敵対的
学習と共同で更新(後述).
Unpaierd 補正ネットワーク- HR識別器による補正
• 直接法のように,HR画像空間からドメインギャップを解消 (再構成誤差は取れる)
• 𝑈!↓!は𝐷#↑によって,局所特徴が改善される.
20
Yuki Kondo @ TTI-J
• 𝐷#↑を⽤いた敵対的学習により,
• ドメインギャップのさらなる解消
• SRの⾼周波成分の保証
を実現.
21
Yuki Kondo @ TTI-J
𝐷!↑の loss︓
:
: PatchGAN
Conv1
LeakeyReLU
Conv5
LeakeyReLU
Batch
norm
・・・
5 conv layers
HR識別器による補正 (Loss・モデル)
・拡⼤倍率ごとのConvについて
・x2のとき,conv1のストライドは2
・x2のとき,conv1, 2のストライドは2
Adversarial loss:
・𝐺(!↓, 𝐺!↓(, 𝑈!↓!の3つの⽣成器が更新される
(𝐺!#↓, 𝐺#↓!︓ドメイン適応の保証 , 𝑈#↓#︓⾼周波成分の保証)
1.論⽂情報・概要
2.導⼊・先⾏研究
3.提案⼿法
4.実験結果
5.結論・所感
Section
Yuki Kondo @ TTI-J
22
実験条件
[ データセット ]
23
Yuki Kondo @ TTI-J
データセット 特徴 Train Test 拡⼤倍率
DIV2K realistic-wild set
(Track 4)
DIV2Kにモーションブラーやピ
クセルシフト,ノイズを付与
⇒ ⾃然なLRを模擬
LR画像 3200枚
HR画像 800枚
LR/HR画像
100枚
4
実世界HR/LR顔画像
データセット
複数の顔画像データセットから
HR画像とLR画像をサンプリング
LR画像 5万枚以上
HR画像 182,866枚
LR画像
3,000枚
4*
実世界HR/LR航空写真
データセット
撮影⾼度の異なる2つの航空写真
データセットからHR画像とLR画
像をサンプリング
LR画像 3200枚
HR画像 800枚
LR画像
数枚︖
(定性評価のみ)
2
AIM 2019 Real-World
Super-Resolution Challenge
dataset (Track 2)
Flickr2K, DIV2Kにあらかじめ
定義された⾮公開の劣化を付与,
unpairedなSource LRとTarget
HRを提供.
LR画像 2650枚
HR画像 800枚
(Flickr2Kより⽣成)
LR/HR画像
100枚
(DIV2Kより⽣成)
4
*︓画像サイズが⼩さすぎる(16x16)ため,Bicubicで2倍拡⼤させた画像をLRとして,さらに2倍に提案⼿法で拡⼤.
DIV2K realistic-wild set ︓既存ブラインドSRとの⽐較
[ 定量評価 ]
・最先端のブラインドSRの組み合わせと検証し,SOTAを達成
・注︓⽐較モデルは本データセットで学習をさせていないため,公平な実験ではない.
24
※
※
Yuki Kondo @ TTI-J
DIV2K realistic-wild set ︓既存ブラインドSRとの⽐較
[ 定性評価 ]
・定性的にも最も鮮明なSRを出⼒していることを確認
・注︓⽐較モデルは本データセットで学習をさせていないため,
公平な実験ではない.
25
Yuki Kondo @ TTI-J
【提案⼿法のLR
ドメイン変換の結果】
真のリアルLRと偽の
リアルLRの劣化を
うまく除去
[ 定量評価 ]
・同様の条件で学習・テストを⾏ったNTIRE2018のベースラインと⽐較.
・ただし,NTIRE2018ではpairedで学習されている(提案⼿法はunpairedで学習)
・PSNRは劣るものの,より知覚的品質を評価できるSSIMでは,SOTAに匹敵.
26
※ IKC last : 最終反復回数7回⽬の結果, IKC max : 反復中に最もPSNRが⾼くなった時のスコア
Yuki Kondo @ TTI-J
DIV2K realistic-wild set ︓NTIRE2018ベースラインとの⽐較
[ Ablation study ]
・提案⼿法の有効性を⽰す
・特に” Ours - trained on 𝐺"↓!”との差から,
Real LR ⇒ clean LRへの変換の有効性は
⾼い.
27
Yuki Kondo @ TTI-J
DIV2K realistic-wild set ︓その他の実験
[ Perception-oriented training ]
・Paired SRネットワークの𝐿%&'を
知覚指向のloss [9]に変更.知覚品質が向上
(⽑の質感がリアルになっている)
[9] X. Wang +. ECCV workshop 2017.
実世界HR/LR顔画像データセット︓SOTA⼿法との⽐較
[ 定量評価 ]
・Unpaired SRやPaired SR,face SR,デブラー⼿法と⽐較.
・GT画像がないため,FID(Frechet inception distance)で
真の分布と⽣成分布の距離を評価(⼩さいほど良い).
・提案⼿法はFIDでSOTAを達成.
[ 定性評価 ]
・論⽂では具体的な⾔及なし.
・若⼲提案⼿法の⽅がリアルっぽい︖
・⼈によって,意⾒が分かれそう.
28
Yuki Kondo @ TTI-J
実世界HR/LR顔画像データセット︓ノイズの多様性
・Cycle consistency lossの⽚側サイクル整合性の制約により,𝐺_(𝑌↓𝑋)の
マッピングを1対多としたことで,様々なノイズを持つリアルLRを⽣成.
29
Yuki Kondo @ TTI-J
[ 最新の既存⼿法との⽐較 ]
・ブラインドデノイズ⼿法のRL-restoreは,
アーティファクトを除去できたが,
ディティールまで除去された.
・提案⼿法はディテールをさらに鮮鋭化させながら,
アーティファクトの除去に成功.
30
Yuki Kondo @ TTI-J
実世界HR/LR航空写真データセット︓定性評価
[ Geometric ensemble lossの効果 ]
・ Geometric ensemble loss
のablation studyを実施.
・ により幾何学的整合性を確保
⇒ ⼊⼒LR画像の幾何学的構造を保持した
より合理的なマッピングに成功.
[ 定量評価 ]
・PSNR, SSIM, そして知覚的品質評価指標
であるLPIPSの全評価指標において,
SOTAを達成.
31
Yuki Kondo @ TTI-J
AIM 2019 Real-World
Super-Resolution Challenge dataset︓定量・定性評価
[ 定性評価 ]
・ZSSRと⽐較し,劣化を除去し,鮮明なSRを
実現.
1.論⽂情報・概要
2.導⼊・先⾏研究
3.提案⼿法
4.実験結果
5.結論・所感
Section
Yuki Kondo @ TTI-J
32
結論・後続研究
[ 結論 ]
・HRとLRのペアが利⽤できないunpairedなSRにおいて,疑似的なclean LRを利⽤する⼿法を提案.
⇒
・多様なデータセットを⽤いた検証で,有効性を確認
・ただし,ケースごとにハイパーパラメータチューニングが必要.
⇒ 今後,ネットワークのハイパーパラメータに対するロバスト性の向上が必要.
33
Yuki Kondo @ TTI-J
・ペアを⽤いることを前提に発展したSR⼿法の活⽤
・ペアがない現実世界のSRの課題
ギャップを解消
[ 後続の研究 ]
† W. Wang et al. “Unsupervised Real-World Super-
Resolution: A Domain Adaptation Perspective”. ICCV2021
疑似LRを⽤いつつ,Source LRとtarget LRを画像空間ではなく,
特徴量空間上でドメイン適応させる⼿法を提案.
†

More Related Content

What's hot

What's hot (20)

[DL輪読会]Dense Captioning分野のまとめ
[DL輪読会]Dense Captioning分野のまとめ[DL輪読会]Dense Captioning分野のまとめ
[DL輪読会]Dense Captioning分野のまとめ
 
工学系大学4年生のための論文の読み方
工学系大学4年生のための論文の読み方工学系大学4年生のための論文の読み方
工学系大学4年生のための論文の読み方
 
【メタサーベイ】数式ドリブン教師あり学習
【メタサーベイ】数式ドリブン教師あり学習【メタサーベイ】数式ドリブン教師あり学習
【メタサーベイ】数式ドリブン教師あり学習
 
トップカンファレンスへの論文採択に向けて(AI研究分野版)/ Toward paper acceptance at top conferences (AI...
トップカンファレンスへの論文採択に向けて(AI研究分野版)/ Toward paper acceptance at top conferences (AI...トップカンファレンスへの論文採択に向けて(AI研究分野版)/ Toward paper acceptance at top conferences (AI...
トップカンファレンスへの論文採択に向けて(AI研究分野版)/ Toward paper acceptance at top conferences (AI...
 
[DL輪読会]Deep High-Resolution Representation Learning for Human Pose Estimation
[DL輪読会]Deep High-Resolution Representation Learning for Human Pose Estimation[DL輪読会]Deep High-Resolution Representation Learning for Human Pose Estimation
[DL輪読会]Deep High-Resolution Representation Learning for Human Pose Estimation
 
機械学習モデルの判断根拠の説明(Ver.2)
機械学習モデルの判断根拠の説明(Ver.2)機械学習モデルの判断根拠の説明(Ver.2)
機械学習モデルの判断根拠の説明(Ver.2)
 
[DL輪読会]Flow-based Deep Generative Models
[DL輪読会]Flow-based Deep Generative Models[DL輪読会]Flow-based Deep Generative Models
[DL輪読会]Flow-based Deep Generative Models
 
【メタサーベイ】Video Transformer
 【メタサーベイ】Video Transformer 【メタサーベイ】Video Transformer
【メタサーベイ】Video Transformer
 
【DL輪読会】AUTOGT: AUTOMATED GRAPH TRANSFORMER ARCHITECTURE SEARCH
【DL輪読会】AUTOGT: AUTOMATED GRAPH TRANSFORMER ARCHITECTURE SEARCH【DL輪読会】AUTOGT: AUTOMATED GRAPH TRANSFORMER ARCHITECTURE SEARCH
【DL輪読会】AUTOGT: AUTOMATED GRAPH TRANSFORMER ARCHITECTURE SEARCH
 
【DL輪読会】Emergent World Representations: Exploring a Sequence ModelTrained on a...
【DL輪読会】Emergent World Representations: Exploring a Sequence ModelTrained on a...【DL輪読会】Emergent World Representations: Exploring a Sequence ModelTrained on a...
【DL輪読会】Emergent World Representations: Exploring a Sequence ModelTrained on a...
 
cvpaper.challenge 研究効率化 Tips
cvpaper.challenge 研究効率化 Tipscvpaper.challenge 研究効率化 Tips
cvpaper.challenge 研究効率化 Tips
 
SSII2021 [OS2-01] 転移学習の基礎:異なるタスクの知識を利用するための機械学習の方法
SSII2021 [OS2-01] 転移学習の基礎:異なるタスクの知識を利用するための機械学習の方法SSII2021 [OS2-01] 転移学習の基礎:異なるタスクの知識を利用するための機械学習の方法
SSII2021 [OS2-01] 転移学習の基礎:異なるタスクの知識を利用するための機械学習の方法
 
[DL輪読会]NVAE: A Deep Hierarchical Variational Autoencoder
[DL輪読会]NVAE: A Deep Hierarchical Variational Autoencoder[DL輪読会]NVAE: A Deep Hierarchical Variational Autoencoder
[DL輪読会]NVAE: A Deep Hierarchical Variational Autoencoder
 
【メタサーベイ】Vision and Language のトップ研究室/研究者
【メタサーベイ】Vision and Language のトップ研究室/研究者【メタサーベイ】Vision and Language のトップ研究室/研究者
【メタサーベイ】Vision and Language のトップ研究室/研究者
 
【DL輪読会】Efficiently Modeling Long Sequences with Structured State Spaces
【DL輪読会】Efficiently Modeling Long Sequences with Structured State Spaces【DL輪読会】Efficiently Modeling Long Sequences with Structured State Spaces
【DL輪読会】Efficiently Modeling Long Sequences with Structured State Spaces
 
【DL輪読会】LAR-SR: A Local Autoregressive Model for Image Super-Resolution
【DL輪読会】LAR-SR: A Local Autoregressive Model for Image Super-Resolution【DL輪読会】LAR-SR: A Local Autoregressive Model for Image Super-Resolution
【DL輪読会】LAR-SR: A Local Autoregressive Model for Image Super-Resolution
 
[DL輪読会]Vision Transformer with Deformable Attention (Deformable Attention Tra...
[DL輪読会]Vision Transformer with Deformable Attention (Deformable Attention Tra...[DL輪読会]Vision Transformer with Deformable Attention (Deformable Attention Tra...
[DL輪読会]Vision Transformer with Deformable Attention (Deformable Attention Tra...
 
[DL輪読会]YOLOv4: Optimal Speed and Accuracy of Object Detection
[DL輪読会]YOLOv4: Optimal Speed and Accuracy of Object Detection[DL輪読会]YOLOv4: Optimal Speed and Accuracy of Object Detection
[DL輪読会]YOLOv4: Optimal Speed and Accuracy of Object Detection
 
SSII2022 [SS2] 少ないデータやラベルを効率的に活用する機械学習技術 〜 足りない情報をどのように補うか?〜
SSII2022 [SS2] 少ないデータやラベルを効率的に活用する機械学習技術 〜 足りない情報をどのように補うか?〜SSII2022 [SS2] 少ないデータやラベルを効率的に活用する機械学習技術 〜 足りない情報をどのように補うか?〜
SSII2022 [SS2] 少ないデータやラベルを効率的に活用する機械学習技術 〜 足りない情報をどのように補うか?〜
 
モデル高速化百選
モデル高速化百選モデル高速化百選
モデル高速化百選
 

Similar to 【DL輪読会】Unpaired Image Super-Resolution Using Pseudo-Supervision

Reverse engineering
Reverse engineeringReverse engineering
Reverse engineering
Saswat Padhi
 
SDVIs and In-Situ Visualization on TACC's Stampede
SDVIs and In-Situ Visualization on TACC's StampedeSDVIs and In-Situ Visualization on TACC's Stampede
SDVIs and In-Situ Visualization on TACC's Stampede
Intel® Software
 

Similar to 【DL輪読会】Unpaired Image Super-Resolution Using Pseudo-Supervision (20)

20180926 kubeflow-meetup-1-kubeflow-operators-Preferred Networks-Shingo Omura
20180926 kubeflow-meetup-1-kubeflow-operators-Preferred Networks-Shingo Omura20180926 kubeflow-meetup-1-kubeflow-operators-Preferred Networks-Shingo Omura
20180926 kubeflow-meetup-1-kubeflow-operators-Preferred Networks-Shingo Omura
 
Concurrency and Python - PyCon MY 2015
Concurrency and Python - PyCon MY 2015Concurrency and Python - PyCon MY 2015
Concurrency and Python - PyCon MY 2015
 
Automated Defect Classifier for PCBs using Raspberry Pi
Automated Defect Classifier for PCBs using Raspberry PiAutomated Defect Classifier for PCBs using Raspberry Pi
Automated Defect Classifier for PCBs using Raspberry Pi
 
Possibilities of generative models
Possibilities of generative modelsPossibilities of generative models
Possibilities of generative models
 
Reverse engineering
Reverse engineeringReverse engineering
Reverse engineering
 
Puppet Camp Dallas 2014: How Puppet Ops Rolls
Puppet Camp Dallas 2014: How Puppet Ops RollsPuppet Camp Dallas 2014: How Puppet Ops Rolls
Puppet Camp Dallas 2014: How Puppet Ops Rolls
 
Performance Optimization of SPH Algorithms for Multi/Many-Core Architectures
Performance Optimization of SPH Algorithms for Multi/Many-Core ArchitecturesPerformance Optimization of SPH Algorithms for Multi/Many-Core Architectures
Performance Optimization of SPH Algorithms for Multi/Many-Core Architectures
 
HotSpotコトハジメ
HotSpotコトハジメHotSpotコトハジメ
HotSpotコトハジメ
 
The secret of programming language development and future
The secret of programming  language development and futureThe secret of programming  language development and future
The secret of programming language development and future
 
AI Bridging Cloud Infrastructure (ABCI) and its communication performance
AI Bridging Cloud Infrastructure (ABCI) and its communication performanceAI Bridging Cloud Infrastructure (ABCI) and its communication performance
AI Bridging Cloud Infrastructure (ABCI) and its communication performance
 
ModernWeb 2019: Why we replace TypeScript with Dart
ModernWeb 2019: Why we replace TypeScript with DartModernWeb 2019: Why we replace TypeScript with Dart
ModernWeb 2019: Why we replace TypeScript with Dart
 
Automated ML Workflow for Distributed Big Data Using Analytics Zoo (CVPR2020 ...
Automated ML Workflow for Distributed Big Data Using Analytics Zoo (CVPR2020 ...Automated ML Workflow for Distributed Big Data Using Analytics Zoo (CVPR2020 ...
Automated ML Workflow for Distributed Big Data Using Analytics Zoo (CVPR2020 ...
 
[NDC2017] 딥러닝으로 게임 콘텐츠 제작하기 - VAE를 이용한 콘텐츠 생성 기법 연구 사례
[NDC2017] 딥러닝으로 게임 콘텐츠 제작하기 - VAE를 이용한 콘텐츠 생성 기법 연구 사례[NDC2017] 딥러닝으로 게임 콘텐츠 제작하기 - VAE를 이용한 콘텐츠 생성 기법 연구 사례
[NDC2017] 딥러닝으로 게임 콘텐츠 제작하기 - VAE를 이용한 콘텐츠 생성 기법 연구 사례
 
“Quantum” Performance Effects: beyond the Core
“Quantum” Performance Effects: beyond the Core“Quantum” Performance Effects: beyond the Core
“Quantum” Performance Effects: beyond the Core
 
SDVIs and In-Situ Visualization on TACC's Stampede
SDVIs and In-Situ Visualization on TACC's StampedeSDVIs and In-Situ Visualization on TACC's Stampede
SDVIs and In-Situ Visualization on TACC's Stampede
 
More Efficient Object Replication in OpenStack Summit Juno
More Efficient Object Replication in OpenStack Summit JunoMore Efficient Object Replication in OpenStack Summit Juno
More Efficient Object Replication in OpenStack Summit Juno
 
JCConf 2018 - Retrospect and Prospect of Java
JCConf 2018 - Retrospect and Prospect of JavaJCConf 2018 - Retrospect and Prospect of Java
JCConf 2018 - Retrospect and Prospect of Java
 
10 Ways To Improve Your Code
10 Ways To Improve Your Code10 Ways To Improve Your Code
10 Ways To Improve Your Code
 
Library Operating System for Linux #netdev01
Library Operating System for Linux #netdev01Library Operating System for Linux #netdev01
Library Operating System for Linux #netdev01
 
4_image_detection.pdf
4_image_detection.pdf4_image_detection.pdf
4_image_detection.pdf
 

More from Deep Learning JP

More from Deep Learning JP (20)

【DL輪読会】AdaptDiffuser: Diffusion Models as Adaptive Self-evolving Planners
【DL輪読会】AdaptDiffuser: Diffusion Models as Adaptive Self-evolving Planners【DL輪読会】AdaptDiffuser: Diffusion Models as Adaptive Self-evolving Planners
【DL輪読会】AdaptDiffuser: Diffusion Models as Adaptive Self-evolving Planners
 
【DL輪読会】事前学習用データセットについて
【DL輪読会】事前学習用データセットについて【DL輪読会】事前学習用データセットについて
【DL輪読会】事前学習用データセットについて
 
【DL輪読会】 "Learning to render novel views from wide-baseline stereo pairs." CVP...
【DL輪読会】 "Learning to render novel views from wide-baseline stereo pairs." CVP...【DL輪読会】 "Learning to render novel views from wide-baseline stereo pairs." CVP...
【DL輪読会】 "Learning to render novel views from wide-baseline stereo pairs." CVP...
 
【DL輪読会】Zero-Shot Dual-Lens Super-Resolution
【DL輪読会】Zero-Shot Dual-Lens Super-Resolution【DL輪読会】Zero-Shot Dual-Lens Super-Resolution
【DL輪読会】Zero-Shot Dual-Lens Super-Resolution
 
【DL輪読会】BloombergGPT: A Large Language Model for Finance arxiv
【DL輪読会】BloombergGPT: A Large Language Model for Finance arxiv【DL輪読会】BloombergGPT: A Large Language Model for Finance arxiv
【DL輪読会】BloombergGPT: A Large Language Model for Finance arxiv
 
【DL輪読会】マルチモーダル LLM
【DL輪読会】マルチモーダル LLM【DL輪読会】マルチモーダル LLM
【DL輪読会】マルチモーダル LLM
 
【 DL輪読会】ToolLLM: Facilitating Large Language Models to Master 16000+ Real-wo...
 【 DL輪読会】ToolLLM: Facilitating Large Language Models to Master 16000+ Real-wo... 【 DL輪読会】ToolLLM: Facilitating Large Language Models to Master 16000+ Real-wo...
【 DL輪読会】ToolLLM: Facilitating Large Language Models to Master 16000+ Real-wo...
 
【DL輪読会】AnyLoc: Towards Universal Visual Place Recognition
【DL輪読会】AnyLoc: Towards Universal Visual Place Recognition【DL輪読会】AnyLoc: Towards Universal Visual Place Recognition
【DL輪読会】AnyLoc: Towards Universal Visual Place Recognition
 
【DL輪読会】Can Neural Network Memorization Be Localized?
【DL輪読会】Can Neural Network Memorization Be Localized?【DL輪読会】Can Neural Network Memorization Be Localized?
【DL輪読会】Can Neural Network Memorization Be Localized?
 
【DL輪読会】Hopfield network 関連研究について
【DL輪読会】Hopfield network 関連研究について【DL輪読会】Hopfield network 関連研究について
【DL輪読会】Hopfield network 関連研究について
 
【DL輪読会】SimPer: Simple self-supervised learning of periodic targets( ICLR 2023 )
【DL輪読会】SimPer: Simple self-supervised learning of periodic targets( ICLR 2023 )【DL輪読会】SimPer: Simple self-supervised learning of periodic targets( ICLR 2023 )
【DL輪読会】SimPer: Simple self-supervised learning of periodic targets( ICLR 2023 )
 
【DL輪読会】RLCD: Reinforcement Learning from Contrast Distillation for Language M...
【DL輪読会】RLCD: Reinforcement Learning from Contrast Distillation for Language M...【DL輪読会】RLCD: Reinforcement Learning from Contrast Distillation for Language M...
【DL輪読会】RLCD: Reinforcement Learning from Contrast Distillation for Language M...
 
【DL輪読会】"Secrets of RLHF in Large Language Models Part I: PPO"
【DL輪読会】"Secrets of RLHF in Large Language Models Part I: PPO"【DL輪読会】"Secrets of RLHF in Large Language Models Part I: PPO"
【DL輪読会】"Secrets of RLHF in Large Language Models Part I: PPO"
 
【DL輪読会】"Language Instructed Reinforcement Learning for Human-AI Coordination "
【DL輪読会】"Language Instructed Reinforcement Learning  for Human-AI Coordination "【DL輪読会】"Language Instructed Reinforcement Learning  for Human-AI Coordination "
【DL輪読会】"Language Instructed Reinforcement Learning for Human-AI Coordination "
 
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models
 
【DL輪読会】"Learning Fine-Grained Bimanual Manipulation with Low-Cost Hardware"
【DL輪読会】"Learning Fine-Grained Bimanual Manipulation with Low-Cost Hardware"【DL輪読会】"Learning Fine-Grained Bimanual Manipulation with Low-Cost Hardware"
【DL輪読会】"Learning Fine-Grained Bimanual Manipulation with Low-Cost Hardware"
 
【DL輪読会】Parameter is Not All You Need:Starting from Non-Parametric Networks fo...
【DL輪読会】Parameter is Not All You Need:Starting from Non-Parametric Networks fo...【DL輪読会】Parameter is Not All You Need:Starting from Non-Parametric Networks fo...
【DL輪読会】Parameter is Not All You Need:Starting from Non-Parametric Networks fo...
 
【DL輪読会】Drag Your GAN: Interactive Point-based Manipulation on the Generative ...
【DL輪読会】Drag Your GAN: Interactive Point-based Manipulation on the Generative ...【DL輪読会】Drag Your GAN: Interactive Point-based Manipulation on the Generative ...
【DL輪読会】Drag Your GAN: Interactive Point-based Manipulation on the Generative ...
 
【DL輪読会】Self-Supervised Learning from Images with a Joint-Embedding Predictive...
【DL輪読会】Self-Supervised Learning from Images with a Joint-Embedding Predictive...【DL輪読会】Self-Supervised Learning from Images with a Joint-Embedding Predictive...
【DL輪読会】Self-Supervised Learning from Images with a Joint-Embedding Predictive...
 
【DL輪読会】Towards Understanding Ensemble, Knowledge Distillation and Self-Distil...
【DL輪読会】Towards Understanding Ensemble, Knowledge Distillation and Self-Distil...【DL輪読会】Towards Understanding Ensemble, Knowledge Distillation and Self-Distil...
【DL輪読会】Towards Understanding Ensemble, Knowledge Distillation and Self-Distil...
 

Recently uploaded

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Recently uploaded (20)

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 

【DL輪読会】Unpaired Image Super-Resolution Using Pseudo-Supervision