-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain_rf_model.py
48 lines (42 loc) · 1.77 KB
/
train_rf_model.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
import pickle, tfidf
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split
import sklearn.metrics as metrics
import numpy as np
#データを格納したpickleファイルのロードを行う
data = pickle.load(open("data/pkl/data.pkl", "rb"))
#ラベルをyに代入
y = data[0]
#IF-IDF計算された入力をxに代入
x = data[1]
#学習用データとテスト用データに分割
x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.1)
#ランダムフォレスト(RF)を行うクラスをインスタンス化
model = RandomForestClassifier()
#RFで学習
model.fit(x_train, y_train)
#テストデータに対して推論を行う
y_pred = model.predict(x_test)
#推論結果と正解ラベルの精度を求める
acc = metrics.accuracy_score(y_test, y_pred)
#推論結果に対して'適合率(precision)'、'再現率(recall)'、
#'F値(f1-score=適合率と再現率の調和平均)'を求める
#('support' is the number of occurrences of each class in y_true)
rep = metrics.classification_report(y_test, y_pred)
#精度の表示
print("精度=", acc)
#classification_reportの結果を表示
print(rep)
#入力したテキストに対して推論を結果をテスト
LABELS = ["スポーツ", "IT", "映画", "国際"]
test = "今日は野球の試合がありますね。"
#辞書データの読み込み
tfidf.load_dic("data/pkl/dic.pkl")
#テキストをIF-IDFでベクトル化
preprocessed_input = tfidf.calc_text(test)
#テキストのカテゴリを推論
y_pred = model.predict(np.array([preprocessed_input]))[0]
#最尤推定値のインデックスを取得
mle_index = y_pred.argmax()
#推論結果のカテゴリを表示
print("推論結果:", LABELS[mle_index])