オムライスの備忘録

数学・統計学・機械学習・プログラミングに関することを記す

2021-01-01から1年間の記事一覧

【データセット】COCO / Common Object in Context #概念編

データセット #まとめ編 yhayato1320.hatenablog.com Index Index COCO / Common Object in Context とは 特徴 ラベル Format 実装編 参考 Web サイト COCO / Common Object in Context とは 物体検出(object detection)、意味分割(segmentation)、画像説明…

【タスク】タスク一覧 #まとめ編

#まとめ編 一覧 yhayato1320.hatenablog.com Index Index 理論分野 深層学習 データ分野 画像処理 動画像処理 自然言語処理 音声解析 時系列 マルチモーダル タスク分野 異常検知 理論分野 深層学習 深層学習 #まとめ編 yhayato1320.hatenablog.com データ分…

【画像処理】スタイル変換 / Style Transfer

Index Index スタイル変換 / Style Transfer 深層学習を用いたアルゴリズム 参考 スタイル変換 / Style Transfer 画像処理 #まとめ編 タスク yhayato1320.hatenablog.com 深層学習を用いたアルゴリズム 深層学習を用いたスタイル変換 yhayato1320.hatenablog…

【データセット】DrivingStereo #概念編

キーワード・知ってると理解がしやすい スレテオカメラ (二眼カメラ) 視差 (disparity) 画像 / マップ LiDAR Point Clouds (3次元点群データの取得方法) データセット #まとめ編 yhayato1320.hatenablog.com Index Index DrivingStereo とは ステレオカメラ …

【データセット】データセット一覧 #まとめ編

#まとめ編 一覧 yhayato1320.hatenablog.com Index Index 系列データ 時系列データ 自然言語データ 音声データ 画像データ 3D テーブルデータ 複合データ 動画データ マルチモーダルデータ その他 地図データ Embodied / 身体性 MineDojo / 2022 ProcTHOR / …

【深層学習】T5 / Text-To-Text Transfer Transformer

yhayato1320.hatenablog.com Index Index T5 について 論文の目次メモ 準備 ネットワークアーキテクチャ Position Embedding Layer Normalization ハードウェア Input と Output 検証 ネットワークアーキテクチャの比較 Attention Masking Pattern 教師なし…

【深層学習】RMSProp / Root Mean Square Prop

yhayato1320.hatenablog.com Index Index RMSProp / Root Mean Square Prop AdaGrad / Adaptive Gradient の課題 改善点 更新アルゴリズム 参考 RMSProp / Root Mean Square Prop AdaGrad / Adaptive Gradient の課題 AdaGrad / Adaptive Gradient は、 変数…

【深層学習】AdaGrad / Adaptive Subgradient Descent

yhayato1320.hatenablog.com Index Index AdaGrad / Adaptive Subgradient Descent 学習率の減衰(Learning Rate Decay) 個別の学習率 更新アルゴリズム 個別の学習率 学習率の減衰(Learning Rate Decay) まとめ 参考 AdaGrad / Adaptive Subgradient Descent…

【深層学習】モーメンタム / Momentum

yhayato1320.hatenablog.com Index Index モーメンタム / Momentum 更新アルゴリズム 物理学からの観点 参考 モーメンタム / Momentum モーメンタム / Momentum は勾配法の(パラメータ空間内での)振動(=無駄な動き)を抑制し、極小値への収束性を改善する. モ…

【深層学習】確率的勾配降下法 / Stochastic Gradient Descent; SGD

yhayato1320.hatenablog.com Index Index 勾配法の課題 確率的勾配降下法 / Stochastic Gradient Descent; SGD 更新アルゴリズム 参考 Web サイト 勾配法の課題 関数には、最小値と極小値がある. 誤差関数が下に凸な関数である簡単な状況では、任意の極小値…

【深層学習】Dropout

Index Index Dropout とは 応用 SMoE Dropout / 2023 Early Dropout / Late Dropout 参考 書籍 Dropout とは 過学習を抑制するために、利用される正則化の手法のひとつ. 正則化 / Regularization #まとめ編 yhayato1320.hatenablog.com 深層学習において、導…

【深層学習】最適化 / Optimization

深層学習 #まとめ編 yhayato1320.hatenablog.com Index Index 最適化 / Optimization とは 勾配 勾配法 アルゴリズム 確率的勾配降下法 / Stochastic Gradient Descent / SGD SGLD / 2011 Momentum ネフテロフの加速勾配法 / Nesterov's Accelerated Gradien…

【深層学習】Adam / Adaptive Moment Estimation

yhayato1320.hatenablog.com Index Index Adam / Adaptive Moment Estimation とは 指数移動平均 不偏推定量 更新アルゴリズム 参考 書籍 Web サイト Adam / Adaptive Moment Estimation とは Momentum と AdaGrad (RMSProp) を合わせた手法. Momentum は学…

【深層学習】XLNet

Transformer #まとめ編 yhayato1320.hatenablog.com XLNet とは BERT のような、Auto Encoder Model は、文章全体から学習するような (MLM + Attention など) 事前学習を行うことで、 Auto Regression Model のような Language Model (言語モデル) の事前学…

【深層学習】Transformer-XL

yhayato1320.hatenablog.com Index Index Transformer-XL とは 参考 Web サイト Transformer-XL とは Transformer の入力は、固定長で、固定長以上の長い文章を入力することに、制限がある形になる. (その場合は、文章を分割するなどの対応が取られる.) Tran…

【画像処理】Transformer #まとめ編

Index Index 画像への応用 課題 アルゴリズム Image Transformer / 2018 Set Transformer / 2018 Axial Transformer / 2019 Vision Transformer / ViT / 2020 ★ Deep ViT / 2021 DeIT / 2021 ★ Swin Transformer / 2021 ★ MetaFormer / PoolFormer / 2021 ML…

【深層学習】XLM #まとめ編

Transformer #まとめ編 yhayato1320.hatenablog.com Index Index XLM / 2019 XLM-RoBERTa / XLM-R / 2020 XLM-ProphetNet / 2020 XLM / 2019 XLM yhayato1320.hatenablog.com XLM-RoBERTa / XLM-R / 2020 RoBERTa yhayato1320.hatenablog.com Unsupervised C…

【深層学習】XLM

XLM #まとめ編 yhayato1320.hatenablog.com XLM とは 言語の内容理解のタスクでは、Generative Pre Training が使われることがある. この研究では、ある言語における教師なし事前学習を行い、 複数の言語(Cross-lingual)の教師ありファインチューニングを行…

【深層学習】Sparse Transformer

Transformer #まとめ編 yhayato1320.hatenablog.com Index Index Sparse Transformer とは Factorized Self Attention どこを見ている 参考 Web サイト Sparse Transformer とは Transformer の課題として、入力の系列が増えると、二次関数的に計算コストや…

【マルチモーダル】分野一覧 #まとめ編

#まとめ編 一覧 yhayato1320.hatenablog.com Index Index アルゴリズム Text-to-Table / 2021 Gato / 2022 SpeechPainter / 2022 IM2WAV / 2022 SadTalker / 2022 Make A Vide 3D / MAV3 / 2023 ConceptFusion / 2023 MINOTAUR / 2023 Video Localized Narra…

【深層学習】PixelCNN #まとめ編

Index Index PixelCNN 参考 Web サイト 応用研究 Conditional PixelCNN / 2016 Parallelized PixelCNN / 2017 参考 PixelCNN CNN を利用した画像を復元 / 復元するネットワークの研究. CNN #まとめ編 yhayato1320.hatenablog.com 自己回帰モデルの 1 種. Aut…

【深層学習】Parallelized PixelCNN

Index Index 手法内容 参考 手法内容 PixelCNN の改善手法. Pixel CNN yhayato1320.hatenablog.com 参考 Parallel Multiscale Autoregressive Density Estimation [2017] arxiv.org

【深層学習】Auto Regression Model / 自己回帰モデル #まとめ編 #00

Index Index Auto Regression Model / 自己回帰モデル 画像への適用 PixelCNN Transformer Auto Regression Model / 自己回帰モデル 自身の出力を次の入力として利用する形式のモデルをAuto Regression Model / 自己回帰モデル と呼ばれる. ここでは、深層学…

【深層学習】Auto Regression Model / 自己回帰モデル #まとめ編 #01

Transformer #まとめ編 yhayato1320.hatenablog.com Auto Regression Model #まとめ編 yhayato1320.hatenablog.com Index Index Transformer-Decoder アルゴリズム GPT / 2018 - CTRL / 2019 Transformer-XL / 2019 XLNet / 2019 Reformer / 2020 Transforme…

【画像処理】Attention #まとめ編

Index Index 画像データへの Attention 適用例 アルゴリズム SENet / 2017 Self-Attention Networks / SAN Slot Attention / 2020 画像データへの Attention 自然言語処理に導入された Attention だが、画像処理に対しても、精度向上を目的として適用される.…

【自然言語処理】Pre Trained Model / 事前学習モデル

自然言語処理 #まとめ編 yhayato1320.hatenablog.com Pre Trained Model / 事前学習モデル 自然言語処理の(特に DeepLearning を使った) 手法に使われる学習方法. Pre Training yhayato1320.hatenablog.com 工夫・テクニック AdaLoRA / 2023 事前学習モデル…

【深層学習】YOLO #まとめ編

Index Index YOLO とは YOLO の変遷 YOLO 一覧 YOLO / 2015 YOLO v2 / 2016 DC-SPP-YOLO / 2019 YOLO v3 / 2018 YOLO v4 / 2020 Scaled-YOLO v4 / 2020 PP-YOLO PP-YOLO / 2020 PP-YOLO v2 / 2021 YOLO v5 / 2020 YOLO R / 2021 YOLO X / 2021 TPH-YOLO v5 /…

【深層学習】BERT #実装編 #05

この記事の読者 深層学習・ディープラーニングの手法の1つである「BERT」について知りたい. キーワード・知ってると理解がしやすい BERT yhayato1320.hatenablog.com yhayato1320.hatenablog.com Index Index 環境とライブラリ 環境構築 Docker Image 作成 …

【深層学習】BERT #まとめ編 #01

BERT まとめ編 yhayato1320.hatenablog.com Index Index SciBERT BlueBERT BioBERT ClinicalBERT LEGAL-BERT PubMedBERT Umls BERT 学習するドメインに対する研究 SciBERT [2019 Allen Institute] Scientific BERT / 科学 yhayato1320.hatenablog.com BlueBE…

【深層学習】Longformer

yhayato1320.hatenablog.com Index Index Longformer とは 長い系列入力データの研究 メモ Transformer の課題 Attention Pattern Full Attention Sliding Window Attention Dilated Sliding Window Global Attention Score Function 参考 Web サイト Longfo…