0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Conv1Dレイヤーを使うとJupyterカーネルがクラッシュする時の対応

Last updated at Posted at 2022-12-01

VS Code内のJupyterカーネル(GPU環境)で学習をしようとしたらカーネルごとクラッシュしたのでその対応です。

環境

  • OS : Windows10
  • GPU : GeForce RTX 2070 SUPER
  • Tensorflow 2.10.1 (GPU)
  • CUDA v11.8

エラー箇所

エラーが出るまで削ったモデル

model = Sequential()
model.add(Conv1D( #<---こいつがあるとクラッシュする
            filters=6,
            kernel_size= 5,
            padding='same'
        ))

model.add(Flatten())
model.add(Dense(1))
model.add(Activation("sigmoid"))

コンパイルしてmodel.fitを呼ぶとカーネルごとクラッシュします。
image.png

Canceled future for execute_request message before replies were done

原因

dllが足りてないようです。

解決方法

zlibwapi.dllを入手して配置します。
次の記事の「zlibwapi.dllのインストール」項目の指示に従ってください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?