PyTorch

スポンサーリンク
Python

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

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

【PyTorch】Tensor配列のサイズ1の次元を削除するtorch.squeeze、指定した位置にサイズ1の次元を挿入するtorch.unsqueeze

Tensor配列のサイズ1の次元を削除するにはtorch.squeeze、指定した位置にサイズ1の次元を挿入するにはtorch.unsqueezeを使用する。 torch.squeeze - PyTorch v1.12 Docs torch...
Python

【PyTorch】Tensor配列にNaNが含まれているか判定するtorch.isnan、nanを指定した値に置き換えるtorch.nan_to_num

PyTorchでTensor配列にNaNが含まれているか判定するにはtorch.isnan、NaNを指定した値に置き換えるにはtorch.nan_to_numを使う。 torch.isnanの使い方 torch.isnanにTensor配列...
Python

【PyTorch】ランダムな整数を生成するtorch.randomint【乱数】

PyTorchでランダムな整数を生成するにはtorch.randomintを用いる。 torch.randint - PyTorch v1.12 Docs torch.randomint 第一引数lowと第二引数highで、生成する乱数の範...
Image

【最短】PyTorchでjpeg/png画像を読みこむread_image、保存するwrite_jpeg/write_png【Python】

PyTorchで画像を読み込むにはtorchvision.io.read_imageを使う。また、保存はtorchvision.io.write_jpeg/torchvision.io.write_pngを使う。 今回用いるサンプル画像をW...
librosa

Per-Channel Energy Normalization(PCEN)の性能確認【PyTorch】

キーワードスポッティングや音イベント検出で、対数log-melや対数スペクトルに変わる特徴量として提案されたPer-Channel Energy Normalization(PCEN)の性能を、yes/noのspeech commands ...
PyTorch

2つのTensor配列の要素ごとの最大値・最小値を取得するtorch.maximum、torch.minimum、torch.fmax、torch.fmin【PyTorch】

2つのTensor配列の要素ごとの最大値・最小値を取得するtorch.maximum、torch.minimum、torch.fmax、torch.fminを使う。 torch.maximum - PyTorch v1.11.0 docum...
PyTorch

【PyTorch】最大値、最小値を取得するtorch.max、torch.min

PyTorchでTensor配列の最大値、最小値を取得するためには、torch.maxとtorch.minを使います。 torch.max torch.maxはTensor配列の最大値を取得します。まず対象となるTensor配列を、3行4列...
Machine Learning

【PyTorch】エポックに応じて自動で学習率を変えるtorch.optim.lr_scheduler

PyTorchで、エポックに応じて学習率を変更するSchedulerの基本的な使い方を見ていきます。 PyTorchに実装されているScheduler 以下、リンク先ドキュメントから、PyTorchに実装されているSchedulerは14種...
Machine Learning

PyTorchのモデルの保存と読み込み方法

PyTorchにモデルの保存と読み込みには大きく分けて2種類の方法があります。1つ目はtorch.save/torch.loadを使う方法で、2つ目はTorchScript形式で保存/読み込む方法です。 参考記事 - Saving and ...