Python

スポンサーリンク
Python

Tensor配列の最大値と最小値を同時に取得するtorch.aminmax【PyTorch】

PyTorchのTensor配列の最大値と最小値を同時に取得するにはtorch.aminmaxを使用する。 torch.aminmax - PyTorch Docs v1.12 torch.aminmaxの使い方 torch.aminmax...
Python

【PyTorch】Tensor配列をシフト(移動)させるtorch.roll

PyTorchでTensor配列をシフト(移動)させるtorch.rollを使う。 torch.roll - PyTorch Docs v1.12 torch.rollの使い方 1次元配列の場合は、torch.rollの第一引数inputに...
Python

【PyTorch】Tensor配列を反転するtorch.flip、torch.flipud、torch.fliplr

PyTorchのTensor配列を上下左右反転させるにはtorch.flipを使う。他にも、上下方向に反転させるtorch.flipud、左右方向に反転させるtorch.fliplrがある。 torch.flip - PyTorch Doc...
Python

1次元配列の内積を計算するtorch.dot【PyTorch】

PyTorchのTensor配列の内積を計算するには、torch.dotを使用する。 torch.dot - PyTorch Docs v1.12 torch.dotの使い方 torch.dotを使うことで、内積を計算することができる。 i...
PyTorch

【PyTorch】torchvision.transformsを使って、学習時のデータ拡張(Data Augmentation)を行う

PyTorchにおける学習時のデータ拡張の方法について見ていきます。データ拡張を行うためのtorchvision.transformsについて説明した後に、学習時のコードのどこに追加すればデータ拡張が行われるのか説明します。 torchvi...
Python

PyTorchで音声/音楽データを読み込むtorchaudio.load

PyTorchで音声/音楽データを読み込むtorchaudio.loadを使う。torchaudio.loadを使用すると、Tensor型で読み込まれるため、PyTorchでそのまま処理することができ便利です。 backendには、Linu...
Machine Learning

ValueError: Expected more than 1 value per channel when training, got input size torch.Sizeの解決方法【PyTorch】

PyTorchで学習を行なっていると、以下エラーが出たので対処方法をメモしていく。 ValueError: Expected more than 1 value per channel when training, got input si...
Machine Learning

【scikit-learn】カテゴリ変数を数値化するsklearn.preprocessing.LabelEncoder【ラベルエンコーディング】

Pythonでカテゴリ変数を数値化するには、scikit-learnライブラリのsklearn.preprocessing.LabelEncoderを用いる。 sklearn.preprocessing.LabelEncoder - sci...
Python

【PyTorch】既存の次元(軸)に沿って結合するtorch.cat

PyTorchのTensor配列を既存の次元(軸)に沿って結合するにはtorch.catを使う。 torch.cat - PyTorch v1.12 Docs torch.catの使い方 以下のTensor配列を用いる。 import to...
Python

【PyTorch】条件に応じた処理を行うtorch.where

PyTorchのTensor配列に対して、条件を満たす要素に対して処理を行うには、torch.whereを使う。 torch.where - PyTorch v1.12 Docs torch.whereの使い方 torch.where(co...