r0w0

PythonやDeepLearning関連で学んだこと、調べたことの備忘録

Entries from 2020-07-17 to 1 day

PyTorchとTensorFlowのTransposed convolution layerの処理手続きの違い

状況 結論の概略 PyTorchが用いている処理手法 0埋めされた出力テンソルを用意 Inputのテンソルを走査 Paddingの適用 参考にしたサイト TensorFlowが用いている処理手法 InputテンソルにStrideを反映 Inputのテンソルを「カーネルで」走査 PyTorch方式とTens…