14
對於語料庫的預處理,我打算從語料庫中提取常用短語,爲此我嘗試使用短語 gensim中的模型,我嘗試了下面的代碼,但它沒有給出我想要的輸出。如何使用gensim從語料庫中提取短語
我的代碼
from gensim.models import Phrases
documents = ["the mayor of new york was there", "machine learning can be useful sometimes"]
sentence_stream = [doc.split(" ") for doc in documents]
bigram = Phrases(sentence_stream)
sent = [u'the', u'mayor', u'of', u'new', u'york', u'was', u'there']
print(bigram[sent])
輸出
[u'the', u'mayor', u'of', u'new', u'york', u'was', u'there']
但它應是
[u'the', u'mayor', u'of', u'new_york', u'was', u'there']
但是,當我竭力試圖o打印列車數據的詞彙表,我可以看到bigram,但是它沒有與測試數據一起工作,哪裏出錯了?
print bigram.vocab
defaultdict(<type 'int'>, {'useful': 1, 'was_there': 1, 'learning_can': 1, 'learning': 1, 'of_new': 1, 'can_be': 1, 'mayor': 1, 'there': 1, 'machine': 1, 'new': 1, 'was': 1, 'useful_sometimes': 1, 'be': 1, 'mayor_of': 1, 'york_was': 1, 'york': 1, 'machine_learning': 1, 'the_mayor': 1, 'new_york': 1, 'of': 1, 'sometimes': 1, 'can': 1, 'be_useful': 1, 'the': 1})
比你的寶貴答案。但在這個例子中,bigram並沒有把「machine」,「learning」作爲「machine_learning」。你知道爲什麼會發生嗎? – 2017-09-10 05:16:56
如果在訓練兩次之前在句子中添加「機器學習」,然後將其添加到發送的變量中,您將獲得「machine_learning」。如果它看不到這一對的頻率,那麼它不會直觀地知道。 – ethanenglish