tf.config.set_visible_devices([], 'GPU') ^ IndentationError: expected an indented block after 'else' statement on line 34
时间: 2024-04-29 10:22:11 浏览: 90
这个错误提示表明你在代码的第34行之后的else语句没有缩进。请检查你的代码,确保在else语句后面缩进了一个或多个空格或制表符。正确的代码应该是这样的:
```
if condition:
# code block to be executed if condition is true
else:
# code block to be executed if condition is false
```
请注意在if语句和else语句之后都有一个冒号,并且else语句后面有一个缩进的代码块。
阅读全文