RuntimeError: Not implemented on the CPU
在终端运行:python trainval_net.py --cuda在pycharm中parser.add_argument('--cuda', dest='cuda', help='whether use CUDA', action='store_true')修改成:parser.add_argument('--cuda', dest='cuda', default=True, help='whether use CUDA')...