2020-07-01から1ヶ月間の記事一覧

docker内でGPG errorが出た際の対処

docker内で以下のようなGPG errorが出た際の対処方法 W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://security.debian.org/debian-security buster…

pytorchのdataloaderとtransformを自作する

pytorchのdataloaderとtransformを自作する 概要 最小構成でのサンプルにより、dataloaderとtransformの自作方法を例示する。 ポイントは前処理を行うtorchvision.transformsに関する部分には、自由に関数を入れることができるというところである。ToTensor(…