飞桨学习笔记

(更新日期:2022/01/10)

  • 查看 Linux 版本信息
    cat /proc/version

  • 查看 gdal 版本号
    gdalinfo --version

  • ERROR: Cannot uninstall ‘filelock’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
    pip install --ignore-installed filelock

  • Error: Need to Create DeviceContextPool first!
    重启

  • ImportError: cannot import name ‘descriptor’
    pip uninstall paddlepaddle-gpu
    pip uninstall protobuf
    pip install paddlepaddle-gpu -i https://mirror.baidu.com/pypi/simple

  • .tif图片显示全黑
    飞桨学习笔记_第1张图片
    使用QGIS软件查看。

  • 使用 PaddleSeg 进行模型训练时报错:*** Check failure stack trace: ***
    减少一次训练所选取的样本数(BATCH_SIZE)。

  • 使用 PaddleSeg 进行模型训练时报错:SyntaxError: encoding problem: utf8 with BOM
    将第一行代码

# coding: utf8

改为

# coding: utf-8
  • 使用 PaddleSeg 进行模型训练时报错:IOPub data rate exceeded.
    飞桨学习笔记_第2张图片
    解决方法:将值调大,比如:
    jupyter notebook --NotebookApp.iopub_data_rate_limit=1000000000
  • 报错:
    在这里插入图片描述
    “=”有错,改为:
    assert h==h_gt, “Error”

你可能感兴趣的:(飞桨,深度学习)