程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> 用Python中的字典來處理索引統計的方法

用Python中的字典來處理索引統計的方法

編輯:更多關於編程

       這篇文章主要介紹了用Python中的字典來處理索引統計的方法,字典的使用是Python學習當中的基礎知識,本文則是相關的一個小實踐,需要的朋友可以參考下

      最近折騰索引引擎以及數據統計方面的工作比較多, 與 Python 字典頻繁打交道, 至此整理一份此方面 API 的用法與坑法備案.

      索引引擎的基本工作原理便是倒排索引, 即將一個文檔所包含的文字反過來映射至文檔; 這方面算法並沒有太多花樣可言, 為了增加效率, 索引數據盡可往內存裡面搬, 此法可效王獻之習書法之勢, 只要把十八台機器內存全部塞滿, 那麼基本也就功成名就了. 而基本思路舉個簡單例子, 現在有以下文檔 (分詞已經完成) 以及其包含的關鍵詞

      ?

    1 2 3 doc_a: [word_w, word_x, word_y] doc_b: [word_x, word_z] doc_c: [word_y]

      將其變換為

      ?

    1 2 3 4 word_w -> [doc_a] word_x -> [doc_a, doc_b] word_y -> [doc_a, doc_c] word_z -> [doc_b]

      寫成 Python 代碼, 便是

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 doc_a = {'id': 'a', 'words': ['word_w', 'word_x', 'word_y']} doc_b = {'id': 'b', 'words': ['word_x', 'word_z']} doc_c = {'id': 'c', 'words': ['word_y']}   docs = [doc_a, doc_b, doc_c] indices = dict()   for doc in docs: for word in doc['words']: if word not in indices: indices[word] = [] indices[word].append(doc['id'])   print indices

      不過這裡有個小技巧, 就是對於判斷當前詞是否已經在索引字典裡的分支

      ?

    1 2 if word not in indices: indices[word] = []

      可以被 dict 的 setdefault(key, default=None) 接口替換. 此接口的作用是, 如果 key 在字典裡, 那麼好說, 拿出對應的值來; 否則, 新建此 key , 且設置默認對應值為 default . 但從設計上來說, 我不明白為何 default 有個默認值 None , 看起來並無多大意義, 如果確要使用此接口, 大體都會自帶默認值吧, 如下

      ?

    1 2 3 for doc in docs: for word in doc['words']: indices. setdefault(word, []) .append(doc['id'])

      這樣就省掉分支了, 代碼看起來少很多.

      不過在某些情況下, setdefault 用起來並不順手: 當 default 值構造很復雜時, 或產生 default 值有副作用時, 以及一個之後會說到的情況; 前兩種情況一言以蔽之, 就是 setdefault 不適用於 default 需要惰性求值的場景. 換言之, 為了兼顧這種需求, setdefault 可能會設計成

      ?

    1 2 3 4 def setdefault(self, key, default_factory): if key not in self: self[key] = default_factory() return self[key]

      倘若真如此, 那麼上面的代碼應改成

      ?

    1 2 3 for doc in docs: for word in doc['words']: indices.setdefault(word, list ).append(doc['id'])

      不過實際上有其它替代方案, 這個最後會提到.

      如果說上面只是一個能預見但實際上可能根本不會遇到的 API 缺陷, 那麼下面這個就略打臉了.

      考慮現在要進行詞頻統計, 即一個詞在文章中出現了多少次, 如果直接拿 dict 來寫, 大致是

      ?

    1 2 3 4 5 6 7 def word_count(words): count = dict() for word in words: count.setdefault(word, 0) += 1 return count   print word_count(['hiiragi', 'kagami', 'hiiragi', 'tukasa', 'yosimizu', 'kagami'])

      當你興致勃勃地跑起上面代碼時, 代碼會以迅雷不及掩臉之勢把異常甩到你鼻尖上 --- 因為出現在 += 操作符左邊的 count.setdefault(word, 0) 在 Python 中不是一個左值. 怎樣, 現在開始念叨 C艹 類型體系的好了吧.

      因為 Python 把默認的字面常量 {} 等價於 dict() 就認為 dict 是銀彈的思想是要不得的; Python 裡面各種數據結構不少, 解決統計問題, 理想的方案是 collections.defaultdict 這個類. 下面的代碼想必看一眼就明白

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 from collections import defaultdict   doc_a = {'id': 'a', 'words': ['word_w', 'word_x', 'word_y']} doc_b = {'id': 'b', 'words': ['word_x', 'word_z']} doc_c = {'id': 'c', 'words': ['word_y']}   docs = [doc_a, doc_b, doc_c] indices = defaultdict(list)   for doc in docs: for word in doc['words']: indices[word].append(doc['id'])   print indices   def word_count(words): count = defaultdict(int) for word in words: count[word] += 1 return count   print word_count(['hiiragi', 'kagami', 'hiiragi', 'tukasa', 'yosimizu', 'kagami'])

      完滿解決了之前遇到的那些破事.

      此外 collections 裡還有個 Counter , 可以粗略認為它是 defaultdict(int) 的擴展.

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved