Traceback (most recent call last): File "D:/ymproject/learn pytorch/writer.py", line 13, in <module> writer.add_scalars("y=2x",3*i,i) File "D:\anaconda\envs\pytorch\lib\site-packages\torch\utils\tensorboard\writer.py", line 425, in add_scalars for tag, scalar_value in tag_scalar_dict.items(): AttributeError: 'int' object has no attribute 'items'
时间: 2023-09-29 15:11:02 浏览: 326
这个错误通常表示您在使用整数对象时,尝试使用“items()”方法,但是整数对象没有“items()”方法。
在这种情况下,我猜测您正在使用一个整数对象来表示一个字典,而TensorBoard要求您传递一个字典类型的对象。请确保您的“tag_scalar_dict”变量是一个字典类型,并且包含键-值对,其中键是您要在TensorBoard中显示的标签,而值是您要记录的相应标量值。
如果您可以提供更多上下文和代码段,我可以更好地帮助您解决此问题。
相关问题
Here is the output from the autograder: --- Autodriver: Job exited with status 0 Exception checked Traceback (most recent call last): File "/home/autograde/autolab/judge/stu.py", line 1, in <module> a,b=input().split() EOFError: EOF when reading a line [[question]] 1101111001101 1000001001100 [[answer]] 10110000011001 Exception checked Traceback (most recent call last): File "/home/autograde/autolab/judge/stu.py", line 1, in <module> a,b=input().split() EOFError: EOF when reading a line [[question]] 1111000101000 1000101100110 [[answer]] 10111110001110 Exception checked Traceback (most recent call last): File "/home/autograde/autolab/judge/stu.py", line 1, in <module> a,b=input().split() EOFError: EOF when reading a line [[question]] 1110110100100 10100001001 [[answer]] 10001010101101 Exception checked Traceback (most recent call last): File "/home/autograde/autolab/judge/stu.py", line 1, in <module> a,b=input().split() EOFError: EOF when reading a line [[question]] 1000101010001 10011001111 [[answer]] 1011000100000 Exception checked Traceback (most recent call last): File "/home/autograde/autolab/judge/stu.py", line 1, in <module> a,b=input().split() EOFError: EOF when reading a line [[question]] 1111101001001 1000010000111 [[answer]] 10111111010000 {"scores": {"Correctness": 0}}
看起来你的程序在运行时遇到了一个输入错误,导致输出了一个异常。这个异常是 EOFError,它表示程序在尝试读取输入时已经到达了文件的末尾。你需要确保你的程序在接收输入时,能够正确处理输入结束的情况。建议你检查你的程序并确保它能够正确地处理输入和输出。此外,你还需要检查一下你的程序是否按照要求输出了正确的答案。最后,你可以再次运行自动评分器以检查你的程序是否已经修复了这个问题。
Traceback (most recent call last): File "C:/Python38/pythonProject/poi.py", line 60, in <module> jsonf = urllib.urlopen(url) Traceback (most recent call last): File "C:/Python38/pythonProject/poi.py", line 60, in <module> jsonf = urllib.urlopen(url) AttributeError: module 'urllib' has no attribute 'urlopen'
您遇到的错误是因为urllib模块中没有urlopen这个属性。Python 3中urllib模块被分为了urllib.request、urllib.parse、urllib.error等子模块。
要解决这个问题,您可以将代码中的urllib替换为urllib.request。请尝试以下修改:
```python
import urllib.request
url = "your_url_here"
jsonf = urllib.request.urlopen(url)
```
这样应该可以解决您的问题。如果还有其他问题,请随时提问。
阅读全文