私は最初に次のようなものを設定します。ある種のトークン化を追加する可能性があります。あなたの例では何も必要ありませんでしたが。
text = """Barbara is good. Barbara is friends with Benny. Benny is bad."""
allwords = text.replace('.','').split(' ')
word_to_index = {}
index_to_word = {}
index = 0
for word in allwords:
if word not in word_to_index:
word_to_index[word] = index
index_to_word[index] = word
index += 1
word_count = index
>>> index_to_word
{0: 'Barbara',
1: 'is',
2: 'good',
3: 'friends',
4: 'with',
5: 'Benny',
6: 'bad'}
>>> word_to_index
{'Barbara': 0,
'Benny': 5,
'bad': 6,
'friends': 3,
'good': 2,
'is': 1,
'with': 4}
次に、適切なサイズ (word_count x word_count) の行列を宣言します。おそらくnumpy
likeを使用して
import numpy
matrix = numpy.zeros((word_count, word_count))
または単にネストされたリスト:
matrix = [None,]*word_count
for i in range(word_count):
matrix[i] = [0,]*word_count
これはトリッキーでmatrix = [[0]*word_count]*word_count
、同じ内部配列への 7 つの参照を含むリストを作成するようなものは機能しないことに注意してください (たとえば、そのコードを試してから を実行すると、、 なども 1 に変更されます) matrix[0][1] = 1
。)。matrix[1][1]
matrix[2][1]
次に、文を繰り返すだけです。
sentences = text.split('.')
for sent in sentences:
for word1 in sent.split(' '):
if word1 not in word_to_index:
continue
for word2 in sent.split(' '):
if word2 not in word_to_index:
continue
matrix[word_to_index[word1]][word_to_index[word2]] += 1
次に、次のようになります。
>>> matrix
[[2, 2, 1, 1, 1, 1, 0],
[2, 3, 1, 1, 1, 2, 1],
[1, 1, 1, 0, 0, 0, 0],
[1, 1, 0, 1, 1, 1, 0],
[1, 1, 0, 1, 1, 1, 0],
[1, 2, 0, 1, 1, 2, 1],
[0, 1, 0, 0, 0, 1, 1]]
または、'Benny' と 'bad' の頻度について知りたい場合は、matrix[word_to_index['Benny']][word_to_index['bad']]
.