gpt4 book ai didi

python - 类型错误 : object of type 'map' has no len()

转载 作者:行者123 更新时间:2023-12-01 09:11:59 28 4
gpt4 key购买 nike

我正在使用下面的函数来计算逆项频率。

all_tokens_set = set([item for sublist in tokenized_documents for item in sublist]) 

def inverse_document_frequencies(tokenized_documents):
idf_values = {}
global dfInv
dfInv = pd.DataFrame()
tokenized_documents = [tokenize(d) for d in words]
all_tokens_set = set([item for sublist in tokenized_documents for item in sublist])
for tkn in all_tokens_set:
contains_token = map(lambda doc: tkn in doc, tokenized_documents)
idf_values[tkn] = 1 + math.log(len(tokenized_documents)/(sum(contains_token)))
dfInv=pd.DataFrame(data ={'tkn':contains_token,'idf_values':idf_values[tkn]})
return dfInv
inverse_document_frequencies(total_all)

total_all是一个列表。

我收到以下错误消息:

TypeError: object of type 'map' has no len()

最佳答案

为了找到长度,您必须将映射类型转换为列表(或元组),然后您可以对其调用 len 。例如:

 >>> len(list(map(lambda a: a[0], x)))
3

关于python - 类型错误 : object of type 'map' has no len(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51583639/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com