日常遇到的问题

  1. Linux中提示No such file or directory解决方法
    vs code中路径未进入到项目所在文件夹。故 ./会报错

  2. 关于数据集问题,github上下的代码,往往会使用VOC或者COCO数据集,故若要训练自己的数据集,需要转换为相对应的数据集格式

3.wheel 包的命名格式为 {distribution}-{version}(-{build tag})?-{python tag}-{abi tag}-{platform tag}.whl

4.only size-1 arrays can be converted to Python scalars
y = x + math.exp(x) -2改为y =[ x + math.exp(x) -2 for x in x]

  1. 解决Using TensorFlow backend
import os
os.environ['KERAS_BACKEND']='tensorflow'
  1. TypeError: Cannot handle this data type: (1, 1),

解决如下:
将:new_im = Image.fromarray(data)
改为:new_im = Image.fromarray(np.uint8(data))

  1. ModuleNotFoundError: No module named 'xxx'; 'xxx' is not a package

  2. essentia 不支持在win中vs上运行 https://my.oschina.net/u/1046919/blog/406179

你可能感兴趣的:(日常遇到的问题)