D:\403\myworld\YaningGe\TCRF.py:110: UserWarning: `Model.fit_generator` is deprecated and will be removed in a future version. Please use `Model.fit`, which supports generators. history = model.fit_generator( Epoch 1/40 2023-06-07 18:03:58.107343: I tensorflow/stream_executor/cuda/cuda_dnn.cc:384] Loaded cuDNN version 8901 2023-06-07 18:03:59.701465: I tensorflow/stream_executor/cuda/cuda_blas.cc:1614] TensorFloat-32 will be used for the matrix multiplication. This will only be logged once.
时间: 2024-04-22 20:23:03 浏览: 453
这是一个 Python 脚本的输出,其中包含了一条警告信息。该警告信息告诉我们 `Model.fit_generator` 方法已经过时,并且将在未来的版本中被移除,建议使用支持生成器的新方法 `Model.fit`。同时,该输出还显示了当前所使用的 TensorFlow 版本中 cuDNN 和 TensorFloat-32 的信息。cuDNN 是 NVIDIA 开发的深度神经网络库,TensorFloat-32 是一种混合精度算法,用于在减少计算精度的同时提高计算速度。
阅读全文