我正在尝试将具有新键的字典添加到另一本字典中,但是我不知道如何在python中进行编码
例如,如果我有两个这样的字典:
max_pool = nn.MaxPool2d(3, stride=2)
max_pool(torch.IntTensor(3,5,5).random_(0, 10))
我想使用新键“ C”将dic_C添加到dic_A作为嵌套字典,如下所示:
RuntimeError: _thnn_max_pool2d_with_indices_forward not supported on CPUType for Int
答案 0 :(得分:0)
您需要在dic_A
中添加一个值为dic_C
的新密钥,如下所示。
dic_A['c'] = dic_C