-
Notifications
You must be signed in to change notification settings - Fork 209
/
pca_test.py
45 lines (39 loc) · 2.1 KB
/
pca_test.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
# -*- coding:utf-8 -*-
'''
-------------------------------------------------
Description : PCA 测试
Author : machinelp
Date : 2020-06-15
-------------------------------------------------
'''
import sys
import json
import numpy as np
from textmatch.config.constant import Constant as const
from textmatch.core.text_embedding import TextEmbedding
from textmatch.tools.decomposition.pca import PCADecomposition
test_dict = {"id0": "其实事物发展有自己的潮流和规律",
"id1": "当你身处潮流之中的时候,要紧紧抓住潮流的机会",
"id2": "想办法脱颖而出,即使没有成功,也会更加洞悉时代的脉搏",
"id3": "收获珍贵的知识和经验。而如果潮流已经退去",
"id4": "这个时候再去往这个方向上努力,只会收获迷茫与压抑",
"id5": "对时代、对自己都没有什么帮助",
"id6": "但是时代的浪潮犹如海滩上的浪花,总是一浪接着一浪,只要你站在海边,身处这个行业之中,下一个浪潮很快又会到来。你需要敏感而又深刻地去观察,略去那些浮躁的泡沫,抓住真正潮流的机会,奋力一搏,不管成败,都不会遗憾。",
"id7": "其实事物发展有自己的潮流和规律",
"id8": "当你身处潮流之中的时候,要紧紧抓住潮流的机会" }
if __name__ == '__main__':
# ['bow', 'tfidf', 'ngram_tfidf', 'bert']
# ['bow', 'tfidf', 'ngram_tfidf', 'bert', 'w2v']
text_embedding = TextEmbedding( match_models=['bow', 'tfidf', 'ngram_tfidf', 'w2v'], words_dict=test_dict )
pca = PCADecomposition(n_components=4)
# pre = text_embedding.predict( "其实事物发展有自己的潮流和规律" )
feature_list = []
for sentence in test_dict.values():
pre = text_embedding.predict(sentence)
feature = np.concatenate([pre[model] for model in ['bow', 'tfidf', 'ngram_tfidf', 'w2v']], axis=0)
feature_list.append(feature)
# print ('feature_list:', feature_list)
data = np.array( feature_list )
pca.fit( data )
res = pca.transform( data )
print('res>>', res)