C++ 【C++】エラー「cv::String::deallocate()’ に対する定義されていない参照」を解決する【include】 【C++】エラー「cv::String::deallocate()' に対する定義されていない参照」を解決する【include】 C++で画像表示したかったのでopencvを使おうとしたのだけど、最初にopencvをインクル... 2022.06.03 C++Programming
Programming 【map】配列の要素で多数決を行う方法【Python】 【map】配列の要素で多数決を行う方法【Python】 分類モデルを学習する時にクロスバリデーション、アンサンブルなどで予測結果の多数決を取りたい場合がある。 この時に便利な方法があるのでまとめておく。 以下のよ... 2022.06.02 ProgrammingPython
C++ 【C++】vectorの最大値・最小値とそのindexを求める方法 【C++】vectorの最大値・最小値とそのindexを求める方法 C++で宣言したvectorの要素の最大値と最小値を求めるための方法をまとめておく。 使うvectorは以下で定義する。 std::vector... 2022.06.01 C++Programming
Programming 【torch.text】module ‘torchtext.data’ has no attribute ‘Field’を解決する 【torch.text】module 'torchtext.data' has no attribute 'Field'を解決する Pytorchのプログラムを実行した際に、以下の部分でエラーが出てきた。 from t... 2022.05.31 ProgrammingPython
Programming 【dpkg】error: dpkg frontend is locked by another processを解決する方法【solved】 【dpkg】error: dpkg frontend is locked by another processを解決する方法【solved】 dpkgコマンドを使ってパッケージをインストールしようとしたら以下のエラーが出てき... 2022.05.31 ProgrammingUbuntu
Programming 【コマンド】Ubuntuのディストリビューションを確認する方法 【コマンド】Ubuntuのディストリビューションを確認する方法 Ubuntuのディストリビューションを確認したい場合は、以下のコマンドをターミナルで実行すれば良い。 cat /etc/lsb-release 出力... 2022.05.30 ProgrammingUbuntu
Programming 【Protobuf】”TypeError: Descriptors cannot not be created directly.”を解決する【solved】 【Protobuf】"TypeError: Descriptors cannot not be created directly."を解決する【solved】 Pythonでtensorflowをインポートしようとしたときに... 2022.05.29 ProgrammingPython
Programming 【Pytorch】No module named ‘torchtext.legacy’を解決する方法【Solved】 【Pytorch】No module named 'torchtext.legacy'を解決する方法【Solved】 以下を実行しようとするとエラーが出た。 from torchtext.legacy import d... 2022.05.27 ProgrammingPython
Programming 【Pytorch】mnistを用いたクラス分類モデルをCNNで学習するコード 【Pytorch】mnistを用いたクラス分類モデルをCNNで学習するコード CNNでmnistの画像データをクラス分類するためのコードをまとめておく。 CNNの実装で必要な層(レイヤー)の定義は↓のページでまとめてい... 2022.05.25 ProgrammingPython
Programming 【ImportError】cannot import name ‘PILLOW_VERSION’ を解決する方法【Solved】 【ImportError】cannot import name 'PILLOW_VERSION' を解決する方法【Solved】 Pythonのプログラムを実行時に、以下のようなPillowに関するエラーが出てきた。 ... 2022.05.24 ProgrammingPython