tensorflow遇到的一些错误

1、tensorflow dtype = t.dtype.base_dtype

     AttributeError: 'float' object has no attribute 'dtype'

     参考网址:http://bbs.bugcode.cn/t/58066

     我报错的行是:

  disc_gradients = disc_optimizer.compute_gradients(discrim_loss, var_list=discrim_vars)

     最后发现原因是,discrim_loss之前没有赋值。

 

2、AttributeError: Can't pickle local object 'GeneratorEnqueuer.start..data_generator_task'

      参考网址:https://github.com/matterport/Mask_RCNN/issues/93

      好像是win10系统上不能设置多核操作。

      解决方式:将参数use_multiprocessing 修改为 False.

你可能感兴趣的:(debug)