第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

函數(shù)中的聚合無(wú)法正常工作

函數(shù)中的聚合無(wú)法正常工作

慕村225694 2023-08-08 10:22:30
你好,我有一個(gè) python 函數(shù)正在工作,但沒(méi)有按照我期望的方式工作,我不確定我的代碼在哪里。def preprocess(text):    case = truecase.get_true_case(text)    doc = nlp(case)    return docdef summarize_texts(texts):    actions = {}    entities = {}    for item in texts:        doc = preprocess(item)        for token in doc:            if token.pos_ == "VERB":                actions[str.lower(token.text)] = actions.get(token.text, 0) +1        for token in doc.ents:            entities[token.label_] = [token.text]            if token.text not in entities[token.label_]:                entities[token.label_].append(token.text)    return {        'actions': actions,        'entities': entities    }當(dāng)我調(diào)用句子列表的函數(shù)時(shí),這是我得到的輸出:docs = [    "Play something by Billie Holiday, and play again",    "Set a timer for five minutes",    "Play it again, Sam"]summarize_texts(docs)output: {'actions': {'play': 1, 'set': 1}, 'entities': {'PERSON': ['Sam'], 'TIME': ['five minutes']}}它正在查找操作鍵和實(shí)體鍵,但我遇到兩個(gè)問(wèn)題。它沒(méi)有計(jì)算正確的動(dòng)作它只存儲(chǔ)每個(gè)實(shí)體的最后一個(gè)值。輸出應(yīng)該是:output: {'actions': {'play': 3, 'set': 1}, 'entities': {'PERSON': ['Billie','Sam'], 'TIME': ['five minutes']}}任何幫助都會(huì)很棒!我有一種感覺(jué),這很簡(jiǎn)單,但太燒腦了,看不到它。
查看完整描述

2 回答

?
滄海一幻覺(jué)

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超5個(gè)贊

您正在替換數(shù)據(jù)結(jié)構(gòu),而不僅僅是更新值。如果此時(shí)不存在,您只想創(chuàng)建一個(gè)新容器。


對(duì)于行動(dòng):


if token.pos_ == "VERB":

    action_key = str.lower(token.text)


    if action_key not in actions:

        actions[action_key] = 0


    actions[action_key] += 1

對(duì)于實(shí)體:


for token in doc.ents:

    entity_key = token.label_

    entity_value = token.text


    if entity_key not in entities:

        entities[entity_key] = []


    if entity_value not in entities[entity_key]:

        entities[entity_key].append(entity_value)

請(qǐng)注意,您可以使用defaultdict. 您還可以使用一組,而不是每次都檢查列表中是否有重復(fù)項(xiàng)


actions = defaultdict(int)

entities = defaultdict(set)

...


if token.pos_ == "VERB":

    actions[str.lower(token.text)] += 1

...


for token in doc.ents:

    entities[token.label_].add(token.text)

    


查看完整回答
反對(duì) 回復(fù) 2023-08-08
?
九州編程

TA貢獻(xiàn)1785條經(jīng)驗(yàn) 獲得超4個(gè)贊

您在將令牌轉(zhuǎn)換為小寫方面不一致。分配給字典時(shí)使用小寫版本,但調(diào)用時(shí)使用原始大小寫actions.get()。因此,如果令牌具有混合大小寫,則在調(diào)用 時(shí)將繼續(xù)獲取默認(rèn)值actions.get(),并繼續(xù)將其設(shè)置為 1。

actions[token.text.lower()] = actions.get(token.text.lower(), 0) +1


查看完整回答
反對(duì) 回復(fù) 2023-08-08
  • 2 回答
  • 0 關(guān)注
  • 137 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)