-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKMeans_CBOW_CloseWord2_Final.py
502 lines (367 loc) · 12.9 KB
/
KMeans_CBOW_CloseWord2_Final.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
#!/usr/bin/env python
# coding: utf-8
# In[1]:
# K-Means: 최종 파일
# Word2Vec - CBOW model (Specific version)
# Word2Vec을 위한 라이브러리
from gensim.models import Word2Vec
# 한국어 처리
from konlpy.tag import Kkma
from konlpy.utils import pprint
# 그래프 표현하기 (고차원을 저차원으로 표현해주는 그래프)
from sklearn.manifold import TSNE
from matplotlib import font_manager, rc
import matplotlib as mpl
import matplotlib.pyplot as plt
get_ipython().run_line_magic('matplotlib', 'inline')
import gensim.models as g
import matplotlib.font_manager as fm
# K-means 라이브러리
from sklearn.cluster import KMeans
# Warnings문 나오는 거 방지용
import warnings
warnings.filterwarnings("ignore")
from scipy.spatial import distance
import pandas as pd
import re
import operator
# 한국어 깨짐 방지 위해 한국어 폰트 설정
font_location = 'C:\Windows\\Fonts\\batang.ttc'
font_name = font_manager.FontProperties(fname=font_location).get_name()
rc('font', family=font_name)
# 글자 깨짐 방지
mpl.rcParams['axes.unicode_minus'] = False
# In[2]:
file = open("tagList_d5.txt", "r", encoding="UTF-8")
data = []
# 한 줄씩 읽기
temp = []
while True:
line = file.readline()
if not line: break
temp.append(line)
# 이중리스트에 저장하기
for t in temp:
data.append(t.split())
# 리스트에 저장하기(빈도수 셀 때 필요)
data_list = []
for dl in data:
for dll in dl:
data_list.append(dll)
# 단어 별 빈도수 세기
frequency = {}
for word in data_list:
count = frequency.get(word,0)
frequency[word] = count + 1
frequency_list = frequency.keys()
total_average = 0
# 빈도수가 일정 수준 이상이면 보관(store): 여기서는 20 이상이면 유효하다 봄
store = {}
a =20
for words in frequency_list:
total_average = total_average + frequency[words]
if (frequency[words] >= a):
store[words] = frequency[words]
#print(words, frequency[words])
# 특정 단어 있는지 확인하기
wantToSearch = '여름밤'
if (wantToSearch in frequency):
print(wantToSearch, "의 빈도수: ", frequency.get(wantToSearch))
print("총 단어 수: ", total_average)
print("단어 종류: ", len(frequency_list))
# 단어 빈도수의 평균값
print("단어 빈도수의 평균: ", total_average/len(frequency_list))
print("*",a, "이상의 단어 수: ", len(store))
store_total = 0
for s in store:
if (s in frequency):
store_total = store_total+ frequency[s]
print(len(store))
print(store_total)
# In[3]:
# Word2Vec 적용하기
# CBOW model
# size: number of dimensions of the embeddings (default = 100)
# window: target word와 target word 주변 단어 간의 최대 거리 (default = 5)
# min_count: 단어 빈도 수가 이 값보다 작으면 무시됨 (default = 5)
# workers: numbers of partitions during training (default = 3)
minCount = 20
s = 250
w = 6
cbow_model = Word2Vec(data, min_count = minCount, iter = 5, size = s, window = w)
cbow_model.save('CBOWModelFile')
print("size = %d" %s)
print("window = %d" %w)
cModel = g.Doc2Vec.load('CBOWModelFile')
vocab = list(cModel.wv.vocab)
print(len(vocab))
# In[4]:
# 좌표평면 상에 그리기
cModel = g.Doc2Vec.load('CBOWModelFile')
vocab = list(cModel.wv.vocab)
X = cModel[vocab]
# 이차원 그래프로 표현: t-SNE
tsne = TSNE(n_components=2)
X_tsne = tsne.fit_transform(X)
#print(len(X_tsne))
# 표 그리기
df = pd.DataFrame(X_tsne, index = vocab[:], columns=['x','y'])
df.shape
#print(df)
# 그래프 그리기
fig = plt.figure()
fig.set_size_inches(40, 20)
ax = fig.add_subplot(1 , 1,1)
ax.scatter(df['x'], df['y'])
for word, pos in df.iterrows():
ax.annotate(word, pos, fontsize=30)
plt.show()
# In[5]:
# 태그와 2차원 좌표로 표현된 데이터
print(df)
data_points = df.values
#print(data_points)
# In[6]:
# 적합한 k 찾기 그래프:SSE
sse = {}
for k in range(1, 10):
kmeans = KMeans(n_clusters=k, max_iter=1000).fit(data_points)
#df["cluster_id"] = kmeans.labels_
sse[k] = kmeans.inertia_ # Inertia: Sum of distances of samples to their closest cluster center
plt.figure()
plt.plot(list(sse.keys()), list(sse.values()))
plt.xlabel("Number of cluster")
plt.ylabel("SSE")
print(sse)
plt.show()
# In[7]:
import seaborn as sns
# 그룹 내 centroid 계산하기
# K-mean clustering
kmeans = KMeans(n_clusters=5).fit(data_points)
#kmeans.labels_
df['cluster_id'] = kmeans.labels_
centroids = kmeans.cluster_centers_
print(centroids)
# In[8]:
# K-means 그리기
sns.lmplot('x','y',data=df, fit_reg = False, scatter_kws={"s":180}, hue = "cluster_id")
count = 0
# 거리 + 빈도수 보관하는 공간
group0 = {}
group1 = {}
group2 = {}
group3 = {}
group4 = {}
#print(df.index)
# centroid와 그 그룹에 속한 점 간의 거리 계산하기
count = 0
for points in df['cluster_id']:
if (points == 0):
group0[df.index[count]] = [distance.euclidean(centroids[0], data_points[count]), frequency.get(df.index[count])]
#print(frequency.get(df.index[count]))
elif (points == 1):
group1[df.index[count]] = [distance.euclidean(centroids[1], data_points[count]), frequency.get(df.index[count])]
elif (points == 2):
group2[df.index[count]] = [distance.euclidean(centroids[2], data_points[count]), frequency.get(df.index[count])]
elif (points == 3):
group3[df.index[count]] = [distance.euclidean(centroids[3], data_points[count]), frequency.get(df.index[count])]
elif (points == 4):
group4[df.index[count]] = [distance.euclidean(centroids[4], data_points[count]), frequency.get(df.index[count])]
count = count+1
# In[9]:
# 빈도수로 유효하다 생각되는 거 얻기: 3개만 얻기
def useful(dict):
i = 0
count_i = 0
# itemgetter(1)이면 value값을 중심으로 정렬. 0이면 key 값을 중심으로 정렬
#print(sorted(dict.items(), key = operator.itemgetter(1)))
while True:
key_word = sorted(dict.items(), key= operator.itemgetter(1))[i]
#print(key_word)
if (key_word[0] in store):
print(key_word)
#print("빈도수: ", store.get(key_word[0]))
count_i = count_i + 1
if (count_i != 3):
#key_word = sorted(dict.items(), key= operator.itemgetter(1))[i]
i = i +1
else:
break
else:
i = i + 1
#key_word = sorted(dict.items(), key= operator.itemgetter(1))[i]
print("------------------------------------------------------")
# In[10]:
# 빈도수로 전체 태그 정보 얻기: 상위에 위치할수록 centroid와 가까운 태그
def useful2(dict):
i = 0
count_i = 0
# itemgetter(1)이면 value값을 중심으로 정렬. 0이면 key 값을 중심으로 정렬
print(sorted(dict.items(), key = operator.itemgetter(1)))
'''
while True:
key_word = sorted(dict.items(), key= operator.itemgetter(1))[i]
print(key_word)
if (key_word[0] in store):
print(key_word)
#print("빈도수: ", store.get(key_word[0]))
count_i = count_i + 1
if (count_i != 3):
#key_word = sorted(dict.items(), key= operator.itemgetter(1))[i]
i = i +1
else:
break
else:
i = i + 1
#key_word = sorted(dict.items(), key= operator.itemgetter(1))[i]
'''
print("------------------------------------------------------")
# In[11]:
# centroid와 가까운 순서로 배열하기
# 위의 3개 단어는 가까우면서 빈도수를 만족하는 단어(useful 함수)
# useful2 형태: 태그 이름 + centroid와의 거리 + 빈도수
#print(sorted(group0.items(),key=operator.itemgetter(1)))
print("group0: ")
useful(group0)
useful2(group0)
#print("-----------------------------------------------------")
#print(sorted(group1.items(),key=operator.itemgetter(1)))
print("group1: ")
useful(group1)
useful2(group1)
#print(sorted(group2.items(),key=operator.itemgetter(1)))
#print("-----------------------------------------------------")
print("group2 ")
useful(group2)
useful2(group2)
#print(sorted(group3.items(),key=operator.itemgetter(1)))
#print("-----------------------------------------------------")
print("group3 ")
useful(group3)
useful2(group3)
#print("-----------------------------------------------------")
print("group4 ")
useful(group4)
useful2(group4)
# In[12]:
# 그룹 내에서 또 자르기(소그룹화): 결론적으로 사용하지 않은 함수(과정)
# 이 아래부터 실제 결론에는 사용되지 않은 코드들(시행착오 코드)
def specific(groupNumber, groupK):
group_list = df[df.cluster_id == groupNumber]
i = 0
#print(len(group_list))
#print(group_list)
# x와 y만 가져오기
#print(group1_list[['x', 'y']])
# group_list는 df와 같은 역할, group_points는 data_points와 같은 역할
# group_list는 단어와 함께 행, 열 형태로 나옴, group_points는 리스트 형태로 나옴
group_list = group_list[['x', 'y']]
group_points = group_list.values
#print(group_points)
# K-means
smallKmeans = KMeans(n_clusters=groupK).fit(group_points)
group_list['small_id'] = smallKmeans.labels_
sCentroids = smallKmeans.cluster_centers_
print(sCentroids)
#print(group_list)
sns.lmplot('x','y',data=group_list, fit_reg = False, scatter_kws={"s":180}, hue = "small_id")
basket = {}
group_s0 = {}
group_s1 = {}
group_s2 = {}
group_s3 = {}
group_s4 = {}
# 작은 cluster의 centroid와 그 그룹에 속한 점 간의 거리 계산하기
smallCount = 0
for points in group_list['small_id']:
if (points == 0):
group_s0[group_list.index[smallCount]] = distance.euclidean(sCentroids[0], group_points[smallCount])
elif (points == 1):
group_s1[group_list.index[smallCount]] = distance.euclidean(sCentroids[1], group_points[smallCount])
elif (points == 2):
group_s2[group_list.index[smallCount]] = distance.euclidean(sCentroids[2], group_points[smallCount])
elif (points == 3):
group_s3[group_list.index[smallCount]] = distance.euclidean(sCentroids[3], group_points[smallCount])
elif (points == 4):
group_s4[group_list.index[smallCount]] = distance.euclidean(sCentroids[4], group_points[smallCount])
smallCount = smallCount+1
# 편리하게 사용하기 위해 이중 딕셔너리 사용
basket['Small group 0'] = group_s0
basket['Small group 1'] = group_s1
basket['Small group 2'] = group_s2
basket['Small group 3'] = group_s3
basket['Small group 4'] = group_s4
# print(basket)
for g in basket:
if len(basket[g]) != 0:
useful(basket[g])
#useful(group_s0)
#useful(group_s1)
#useful(group_s2)
#useful(group_s3)
#useful(group_s4)
# In[14]:
# 그룹 내에서 자르기 결과
#specific(0, 2)
#specific(1, 3)
#specific(2, 3)
#specific(3, 3)
specific(4, 2)
# In[17]:
# 데이터 파악하기
# 단어 주위에 있는 단어 추출하기
def CloseWord(wantWord):
# 찾는 단어의 좌표 저장
word_x = df.loc[wantWord]['x']
word_y = df.loc[wantWord]['y']
word_group = df.loc[wantWord]['cluster_id']
word_loc = (word_x, word_y)
print(word_loc)
group_list = df[df.cluster_id == word_group]
i = 0
#print(len(group_list))
#print(group_list)
# group_list는 df와 같은 역할, group_points는 data_points와 같은 역할
# group_list는 단어와 함께 행, 열 형태로 나옴, group_points는 리스트 형태로 나옴
group_list = group_list[['x', 'y']]
group_points = group_list.values
#print(group_points)
distance_info = {}
# 작은 cluster의 centroid와 그 그룹에 속한 점 간의 거리 계산하기
count = 0
#print(group_points[0])
for points in group_points:
dis = distance.euclidean(word_loc, points)
if (dis != 0):
distance_info[group_list.index[count]] = dis
count = count + 1
print(distance_info)
useful(distance_info)
# In[18]:
CloseWord('조용한')
# In[19]:
#단어의 x, y, cluster_id 추출
print(df.loc['여름밤'])
# In[20]:
# 소그룹 내에서 적합한 k 찾기 함수
def appropriateK(groupNumber):
sse = {}
group_list = df[df.cluster_id == groupNumber]
for k in range(1, 10):
group_list = group_list[['x', 'y']]
group_points = group_list.values
kmeans = KMeans(n_clusters=k, max_iter=1000).fit(group_points)
#df["cluster_id"] = kmeans.labels_
sse[k] = kmeans.inertia_ # Inertia: Sum of distances of samples to their closest cluster center
plt.figure()
plt.plot(list(sse.keys()), list(sse.values()))
plt.xlabel("Number of cluster")
plt.ylabel("SSE")
print(sse)
plt.show()
# In[23]:
appropriateK(0)
# In[196]:
file.close()
# In[ ]: