keep-loving-pythonのブログ

Pythonを愛し続けたいです(Pythonが流行っている限りですが。。。)

2021-01-01から1年間の記事一覧

NVIDIA Docker に関して いろいろ。。。

わかりやすそうな記事があったので、まず、紹介しておく medium.com

tensoflow1.15とcuDNN7.4の組合せは、動かないのでは。cuDNN7.6が適切でしょう。(Windows)

tensoflow1.15とcuDNN7.4の組合せは、動かないのでは。cuDNN7.6が適切でしょう。 以下↓↓の通り、本来は、7.4のハズなのだが。。。 https://www.tensorflow.org/install/source_windows 自分の環境では、動きません。 自分の環境では、cuDNN7.6にすると動きま…

ModuleNotFoundError: No module named 'resource'の対処方法(timing.py)

対処法 stackoverflow.com によると、 c:\users\chinmay\appdata\local\programs\python\python38-32\lib\site-packages\IPython\utils\timing.py change import time to import timeit change time.clock to timeit.default_timer つまり、 timing.py のフ…

エラー、ModuleNotFoundError: No module named 'tensorflow.contrib' 対策。

概要 Windows。 from tensorflow.contrib.layers import conv2d, max_pool2d, conv2d_transpose ModuleNotFoundError: No module named 'tensorflow.contrib' 解決方法。 関連github https://github.com/nie-lang/DeepImageStitching-1.0 ステート 解決。 エ…

AttributeError: module transformers.models.cpm has no attribute CpmTokenizer 解決方法

概要 Windows。 raise AttributeError(f"module {self.__name__} has no attribute {name}") AttributeError: module transformers.models.cpm has no attribute CpmTokenizer 解決方法。 関連github https://github.com/yg211/bert_nli ステート 解決。たぶ…

PythonをVisual Studioのついでにその中にインストールしてしまうのは、ダメ?!

PythonをVisual Studioのついでにその中にインストールしてしまうのは、ダメ?! Visual Studioをインストールするときに、ついでにPythonのインストールも進められる場合がある。 そのままインストールすると、以下とかにインストールされると思うが。。。 …

Pythonがいまどれが動いていて、どこにあるか確認する方法

Pythonがいまどれが動いていて、どこにあるか確認する方法 以下のように、exeが示される。 >>> import sys >>> sys.executable 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\Python37_64\\python.exe' >>>