作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何交换我的 dict
的键值对,其中键是字符串,值是 numpy
数组
word2index = {'think': array([[9.56090081e-05]]),
'apple':array([[0.00024469]])}
现在我需要这样的输出
index2word = {array([[9.56090081e-05]]):'think',
array([[0.00024469]]):'apple'}
最佳答案
Why Lists Can't Be Dictionary Keys
To be used as a dictionary key, an object must support the hash function (e.g. through hash), equality comparison (e.g. through eq or cmp)
That said, the simple answer to why lists cannot be used as dictionary keys is that lists do not provide a valid hash method.
但是,使用列表的字符串表示
:
word2index = {'think': [9.56090081e-05], 'apple': [0.00024469]}
print({repr(v):k for k,v in word2index.items()})
输出:
{'[9.56090081e-05]': 'think', '[0.00024469]': 'apple'}
或:
将列表转换为元组:
print({tuple(v):k for k,v in word2index.items()})
输出:
{(9.56090081e-05,): 'think', (0.00024469,): 'apple'}
关于python - 如何用字符串和numpy数组形成字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55471300/
我是一名优秀的程序员,十分优秀!