SlideShare a Scribd company logo
1 of 18
Download to read offline
TransPose: Towards Explainable
Human Pose Estimation by
Transformer
第6回 全日本コンピュータビジョン勉強会
Transformer 読み会
2021/04/18
@yasutomo57jp
https://yasutomo57jp.github.io
自己紹介
• 名前:川西康友
• 所属:理化学研究所
ガーディアンロボットプロジェクト
感覚データ認識研究チーム
• 職場:ATR(けいはんな学研都市)
心を感じられるロボット実現のため,
ロボットによる周囲環境の認識
人の意図や行動の認識
に関する研究を行っています
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
2
ここ
研究員や博士課程の学生など
一緒に研究してくれる人を
絶賛募集しています!
TransPose: Towards Explainable
Human Pose Estimation by
Transformer
第6回 全日本コンピュータビジョン勉強会
Transformer 読み会
2021/04/18
@yasutomo57jp
https://yasutomo57jp.github.io
概要
• Transformerを使った姿勢推定器の提案
• 人体構造の推定問題へのTransformerの初応用
• ヒートマップの可視化による説明性
• 73%少ないパラメータで1.4倍高速
• 書誌情報
• 著者:Sen Yang et al. (東南大学)
• arXiv: https://arxiv.org/abs/2012.14214
• Github: https://github.com/yangsenius/TransPose
• Pytorch hub形式でもモデル配布
• タイトルのノリだけで選びました
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
4
研究の背景
• 画像からの人物姿勢推定
• CNNによる人物姿勢推定が主流
• CNNによる人物姿勢推定の辛いところ
• 各層が何をしているのか良くわからない
• 特徴マップのActivationを見ても,空間中の相互関係はわからない
• 畳み込み層のパラメータ(固定)では表現に限界がある
• 画像認識や物体検出のような可視化手法が確立されていない
• この研究
• 説明性のあるモデル
• 画像内の関連を可視化
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
5
関連研究
• 説明性
• CNNのクラス分類器の分類を説明したり可視化したりするもの
• Network Dissection, Feature Visualization, Excitation Backprop,
LRP, CAM, Grad-CAM
• 姿勢推定での事例は少ない
• 姿勢推定
• CNNベースの姿勢推定器
• CPM, Stacked Hourglass Network, FPN, CPN, Simple Baseline, HRNet, RSN
• 基本は,バックボーンで特徴をとって,
畳み込み層を重ねて特徴点ヒートマップを推定する
• Transformer
• もうご存知ですよね
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
6
提案手法
• 姿勢推定問題にTransformerのEncoderを導入
• Self Attentionを可視化することで,画素間の関係を確認
• Positional Encoderに工夫
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
7
実際のモデルを見ると,この接続もありそう
特に言及されていないけどTop-down姿勢推定器です
※図は論文より引用
補足:姿勢推定
• Top-down 姿勢推定器
• 人物検出をしたうえで,人物の矩形内で各関節位置を推定する手法
• Stacked Hourglass Network, CPN, SimpleBaselineなど
• 人物サイズが正規化されるため,大きさの変化に比較的頑健
• Bottom-up 姿勢推定器
• 人物を区別せずに関節候補点を求め,人物ごとにまとめる手法
• OpenPose, PersonLab , PifPafなど
• 人数が増えても速度低下しにくい
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
8
CNNではなくTransformerを使うことのメリット
• 周囲(特に遠く)の情報をふまえた推定が容易
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
9
CNNは何段も必要 Transformerだと1発!!
※図は論文より引用
この論文でのTransformerの使い方
• Dチャネルの特徴マップの各画素をD次元ベクトルの単語とみなす
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
10
バックボーン 特徴マップ
入力画像 分割 Transformer
Encoder
W
H
D
D次元ベクトルが
WxH個
256x192
浅い
CNN
入力の1/4∼1/8のサイズ
2次元のPositional Encoding
• 空間構造を学習するために特徴量に位置情報を埋め込む
• もとのTransformerでは文中の単語の位置に応じてsinやcosの値を足す
• 2D Sine position embedding
• 位置情報はx, y 軸で独立だと仮定し,独立に埋め込み
• Learnable position embedding
• どの位置にどんな値を埋め込むかを学習によって決定する
• (WxH)xDの行列の各要素の値を学習
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
12
+
+ 学習
Attentionとヒートマップの可視化
• Attention:QueryとKeyの積
• 特徴マップの画素数x画素数の行列
• Attentionの可視化
• Aのi行目を可視化
• その点の位置が,他の場所からどれだけ影響を受けているか
• Aのj行目を可視化
• その点の位置が,他の場所にどれだけ影響を与えているか
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
13
Q K
d
A
i番目からj番目への
影響度的なもの
WH
WH
WH
画像化
画像化
A
WH
WH V
d d
* Softmaxとか色々省略してます
出力 WH
それぞれ行列を掛けて,
Q, K, Vを作っておく
実験
• MS COCO Datasetを利用
• Train2017 150k人を含む57k枚の画像
• Val2017 5k枚の画像
• Test2017 20k枚の画像
• 評価指標:
• Average Precision (AP)
• OKSに対する閾値を0.50∼0.95まで10段階変化させたときの正解率
• Object Keypoint Similarity (OKS)
• 関節点の類似度を表す指標
• 完全に一致していれば1になる
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
14
Position Embeddingの評価
• 学習するものより,2DのSine関数の方がAPが良かった
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
15
(何かおかしいような…パラメータ数は増えないはず🤔)
※表は論文より引用
他の手法との姿勢推定結果比較
• 高いAPを保ったまま,パラメータ数・計算量の削減を実現
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
16
精度をキープ
モデルサイズを削減 ※表は論文より引用
ヒートマップの可視化
• 各関節(星印の点)がどこから強く影響を受けているかを可視化
• 動きにくい点や反対側の点からの影響が強い傾向がある?
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
17
※図は論文より引用
まとめ
• Transformerを使った姿勢推定器の提案
• 人体構造の推定問題へのTransformerの初応用
• ヒートマップの可視化による説明性
• 73%少ないパラメータで1.4倍高速
• Transformerを使うことで
• 畳込みでは捉えられない離れた位置の関係を獲得
• 説明性は…
• 画素間の関係を捉えているだけでイマイチでは?
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
19
研究員や博士課程の学生など
一緒に研究してくれる人を
絶賛募集しています!
問い合わせは @yasutomo57jp 宛でも可
ロボットによる
環境認識や
人に関する認識
研究をしたい方
関連する論文
• TokenPose: Learning Keypoint Tokens for Human Pose Estimation
• 同じ著者が属するグループからのarXiv論文 (2021/04/09)
• Transformerに,Visual tokenだけでなく,Keypoint tokenを追加
• どの画素がどの関節点に効いているのかを可視化
2021/4/18 第6回全日本コンピュータビジョン勉強会 Transformer読み会
20
この部分が追加されている
※図は論文より引用

More Related Content

What's hot

What's hot (20)

【メタサーベイ】数式ドリブン教師あり学習
【メタサーベイ】数式ドリブン教師あり学習【メタサーベイ】数式ドリブン教師あり学習
【メタサーベイ】数式ドリブン教師あり学習
 
SSII2022 [TS1] Transformerの最前線〜 畳込みニューラルネットワークの先へ 〜
SSII2022 [TS1] Transformerの最前線〜 畳込みニューラルネットワークの先へ 〜SSII2022 [TS1] Transformerの最前線〜 畳込みニューラルネットワークの先へ 〜
SSII2022 [TS1] Transformerの最前線〜 畳込みニューラルネットワークの先へ 〜
 
[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
 
SSII2020 [OS2-02] 教師あり事前学習を凌駕する「弱」教師あり事前学習
SSII2020 [OS2-02] 教師あり事前学習を凌駕する「弱」教師あり事前学習SSII2020 [OS2-02] 教師あり事前学習を凌駕する「弱」教師あり事前学習
SSII2020 [OS2-02] 教師あり事前学習を凌駕する「弱」教師あり事前学習
 
畳み込みニューラルネットワークの高精度化と高速化
畳み込みニューラルネットワークの高精度化と高速化畳み込みニューラルネットワークの高精度化と高速化
畳み込みニューラルネットワークの高精度化と高速化
 
Triplet Loss 徹底解説
Triplet Loss 徹底解説Triplet Loss 徹底解説
Triplet Loss 徹底解説
 
SSII2019企画: 点群深層学習の研究動向
SSII2019企画: 点群深層学習の研究動向SSII2019企画: 点群深層学習の研究動向
SSII2019企画: 点群深層学習の研究動向
 
物体検出の歴史(R-CNNからSSD・YOLOまで)
物体検出の歴史(R-CNNからSSD・YOLOまで)物体検出の歴史(R-CNNからSSD・YOLOまで)
物体検出の歴史(R-CNNからSSD・YOLOまで)
 
深層学習によるHuman Pose Estimationの基礎
深層学習によるHuman Pose Estimationの基礎深層学習によるHuman Pose Estimationの基礎
深層学習によるHuman Pose Estimationの基礎
 
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料
 
モデル高速化百選
モデル高速化百選モデル高速化百選
モデル高速化百選
 
SSII2022 [SS1] ニューラル3D表現の最新動向〜 ニューラルネットでなんでも表せる?? 〜​
SSII2022 [SS1] ニューラル3D表現の最新動向〜 ニューラルネットでなんでも表せる?? 〜​SSII2022 [SS1] ニューラル3D表現の最新動向〜 ニューラルネットでなんでも表せる?? 〜​
SSII2022 [SS1] ニューラル3D表現の最新動向〜 ニューラルネットでなんでも表せる?? 〜​
 
TensorFlowで逆強化学習
TensorFlowで逆強化学習TensorFlowで逆強化学習
TensorFlowで逆強化学習
 
CV分野におけるサーベイ方法
CV分野におけるサーベイ方法CV分野におけるサーベイ方法
CV分野におけるサーベイ方法
 
[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
 
近年のHierarchical Vision Transformer
近年のHierarchical Vision Transformer近年のHierarchical Vision Transformer
近年のHierarchical Vision Transformer
 
[DL輪読会]SlowFast Networks for Video Recognition
[DL輪読会]SlowFast Networks for Video Recognition[DL輪読会]SlowFast Networks for Video Recognition
[DL輪読会]SlowFast Networks for Video Recognition
 
【メタサーベイ】Video Transformer
 【メタサーベイ】Video Transformer 【メタサーベイ】Video Transformer
【メタサーベイ】Video Transformer
 
SfM Learner系単眼深度推定手法について
SfM Learner系単眼深度推定手法についてSfM Learner系単眼深度推定手法について
SfM Learner系単眼深度推定手法について
 
三次元表現まとめ(深層学習を中心に)
三次元表現まとめ(深層学習を中心に)三次元表現まとめ(深層学習を中心に)
三次元表現まとめ(深層学習を中心に)
 

Similar to TransPose: Towards Explainable Human Pose Estimation by Transformer

ed767a_bbccb9ffe8b0479fa98521e45d649d1e
ed767a_bbccb9ffe8b0479fa98521e45d649d1eed767a_bbccb9ffe8b0479fa98521e45d649d1e
ed767a_bbccb9ffe8b0479fa98521e45d649d1e
Abi Grogan
 
Chat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlowChat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlow
Jeongkyu Shin
 

Similar to TransPose: Towards Explainable Human Pose Estimation by Transformer (13)

victores2013towards-presentation
victores2013towards-presentationvictores2013towards-presentation
victores2013towards-presentation
 
20171025 pp-in-robotics
20171025 pp-in-robotics20171025 pp-in-robotics
20171025 pp-in-robotics
 
Wireless Pick & Place Robot
Wireless Pick & Place RobotWireless Pick & Place Robot
Wireless Pick & Place Robot
 
NLTK - Natural Language Processing in Python
NLTK - Natural Language Processing in PythonNLTK - Natural Language Processing in Python
NLTK - Natural Language Processing in Python
 
SIGVerse Project: IROS 2016 Keynote talk
SIGVerse Project: IROS 2016 Keynote talkSIGVerse Project: IROS 2016 Keynote talk
SIGVerse Project: IROS 2016 Keynote talk
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptx
 
ed767a_bbccb9ffe8b0479fa98521e45d649d1e
ed767a_bbccb9ffe8b0479fa98521e45d649d1eed767a_bbccb9ffe8b0479fa98521e45d649d1e
ed767a_bbccb9ffe8b0479fa98521e45d649d1e
 
Development of human support robot
Development of human support robotDevelopment of human support robot
Development of human support robot
 
Emphasizing the Human side of Human-Computer Interaction
Emphasizing the Human side of Human-Computer InteractionEmphasizing the Human side of Human-Computer Interaction
Emphasizing the Human side of Human-Computer Interaction
 
Ontology Building and its Application using Hozo
Ontology Building and its Application using HozoOntology Building and its Application using Hozo
Ontology Building and its Application using Hozo
 
[IROS2017] Online Spatial Concept and Lexical Acquisition with Simultaneous L...
[IROS2017] Online Spatial Concept and Lexical Acquisition with Simultaneous L...[IROS2017] Online Spatial Concept and Lexical Acquisition with Simultaneous L...
[IROS2017] Online Spatial Concept and Lexical Acquisition with Simultaneous L...
 
Chat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlowChat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlow
 
Python on Science ? Yes, We can.
Python on Science ?   Yes, We can.Python on Science ?   Yes, We can.
Python on Science ? Yes, We can.
 

More from Yasutomo Kawanishi

画像処理でのPythonの利用
画像処理でのPythonの利用画像処理でのPythonの利用
画像処理でのPythonの利用
Yasutomo Kawanishi
 
第17回関西CVPRML勉強会 (一般物体認識) 1,2節
第17回関西CVPRML勉強会 (一般物体認識) 1,2節第17回関西CVPRML勉強会 (一般物体認識) 1,2節
第17回関西CVPRML勉強会 (一般物体認識) 1,2節
Yasutomo Kawanishi
 

More from Yasutomo Kawanishi (12)

全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
 
Pythonによる機械学習入門 ~Deep Learningに挑戦~
Pythonによる機械学習入門 ~Deep Learningに挑戦~Pythonによる機械学習入門 ~Deep Learningに挑戦~
Pythonによる機械学習入門 ~Deep Learningに挑戦~
 
Pythonによる機械学習入門 ~SVMからDeep Learningまで~
Pythonによる機械学習入門 ~SVMからDeep Learningまで~Pythonによる機械学習入門 ~SVMからDeep Learningまで~
Pythonによる機械学習入門 ~SVMからDeep Learningまで~
 
Pythonによる機械学習入門〜基礎からDeep Learningまで〜
Pythonによる機械学習入門〜基礎からDeep Learningまで〜Pythonによる機械学習入門〜基礎からDeep Learningまで〜
Pythonによる機械学習入門〜基礎からDeep Learningまで〜
 
サーベイ論文:画像からの歩行者属性認識
サーベイ論文:画像からの歩行者属性認識サーベイ論文:画像からの歩行者属性認識
サーベイ論文:画像からの歩行者属性認識
 
Pythonによる画像処理について
Pythonによる画像処理についてPythonによる画像処理について
Pythonによる画像処理について
 
ACCV2014参加報告
ACCV2014参加報告ACCV2014参加報告
ACCV2014参加報告
 
背景モデリングに関する研究など
背景モデリングに関する研究など背景モデリングに関する研究など
背景モデリングに関する研究など
 
画像処理でのPythonの利用
画像処理でのPythonの利用画像処理でのPythonの利用
画像処理でのPythonの利用
 
第17回関西CVPRML勉強会 (一般物体認識) 1,2節
第17回関西CVPRML勉強会 (一般物体認識) 1,2節第17回関西CVPRML勉強会 (一般物体認識) 1,2節
第17回関西CVPRML勉強会 (一般物体認識) 1,2節
 
SNSでひろがるプライバシ制御センシング
SNSでひろがるプライバシ制御センシングSNSでひろがるプライバシ制御センシング
SNSでひろがるプライバシ制御センシング
 
SHOGUN使ってみました
SHOGUN使ってみましたSHOGUN使ってみました
SHOGUN使ってみました
 

Recently uploaded

Pests of cotton_Borer_Pests_Binomics_Dr.UPR.pdf
Pests of cotton_Borer_Pests_Binomics_Dr.UPR.pdfPests of cotton_Borer_Pests_Binomics_Dr.UPR.pdf
Pests of cotton_Borer_Pests_Binomics_Dr.UPR.pdf
PirithiRaju
 
Chemical Tests; flame test, positive and negative ions test Edexcel Internati...
Chemical Tests; flame test, positive and negative ions test Edexcel Internati...Chemical Tests; flame test, positive and negative ions test Edexcel Internati...
Chemical Tests; flame test, positive and negative ions test Edexcel Internati...
ssuser79fe74
 
Bacterial Identification and Classifications
Bacterial Identification and ClassificationsBacterial Identification and Classifications
Bacterial Identification and Classifications
Areesha Ahmad
 
Formation of low mass protostars and their circumstellar disks
Formation of low mass protostars and their circumstellar disksFormation of low mass protostars and their circumstellar disks
Formation of low mass protostars and their circumstellar disks
Sérgio Sacani
 
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
PirithiRaju
 
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
Lokesh Kothari
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Lokesh Kothari
 

Recently uploaded (20)

FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and SpectrometryFAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
 
Pests of cotton_Borer_Pests_Binomics_Dr.UPR.pdf
Pests of cotton_Borer_Pests_Binomics_Dr.UPR.pdfPests of cotton_Borer_Pests_Binomics_Dr.UPR.pdf
Pests of cotton_Borer_Pests_Binomics_Dr.UPR.pdf
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdf
 
Chemical Tests; flame test, positive and negative ions test Edexcel Internati...
Chemical Tests; flame test, positive and negative ions test Edexcel Internati...Chemical Tests; flame test, positive and negative ions test Edexcel Internati...
Chemical Tests; flame test, positive and negative ions test Edexcel Internati...
 
Site Acceptance Test .
Site Acceptance Test                    .Site Acceptance Test                    .
Site Acceptance Test .
 
Feature-aligned N-BEATS with Sinkhorn divergence (ICLR '24)
Feature-aligned N-BEATS with Sinkhorn divergence (ICLR '24)Feature-aligned N-BEATS with Sinkhorn divergence (ICLR '24)
Feature-aligned N-BEATS with Sinkhorn divergence (ICLR '24)
 
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedConnaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
 
CELL -Structural and Functional unit of life.pdf
CELL -Structural and Functional unit of life.pdfCELL -Structural and Functional unit of life.pdf
CELL -Structural and Functional unit of life.pdf
 
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts ServiceJustdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
 
Bacterial Identification and Classifications
Bacterial Identification and ClassificationsBacterial Identification and Classifications
Bacterial Identification and Classifications
 
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls Agency
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls AgencyHire 💕 9907093804 Hooghly Call Girls Service Call Girls Agency
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls Agency
 
Factory Acceptance Test( FAT).pptx .
Factory Acceptance Test( FAT).pptx       .Factory Acceptance Test( FAT).pptx       .
Factory Acceptance Test( FAT).pptx .
 
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
 
Formation of low mass protostars and their circumstellar disks
Formation of low mass protostars and their circumstellar disksFormation of low mass protostars and their circumstellar disks
Formation of low mass protostars and their circumstellar disks
 
GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)
 
GBSN - Microbiology (Unit 1)
GBSN - Microbiology (Unit 1)GBSN - Microbiology (Unit 1)
GBSN - Microbiology (Unit 1)
 
Chemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdfChemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdf
 
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
 
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
 

TransPose: Towards Explainable Human Pose Estimation by Transformer