【发布时间】:2015-08-11 09:54:58
【问题描述】:
我正在使用 sklearn train_test_split 函数来拆分我的训练和测试数据。在我拆分数据并运行我的分类器之后,我需要能够将特征和标签值追溯到原始数据记录。我怎样才能做到这一点?有没有办法包含某种被分类器忽略的隐藏 id 特征?
import json
import numpy as np
from sklearn.cross_validation import train_test_split
json_data = r"""
[
{ "id": 101, "label": 1, "f1": 1, "f2":2, "f3": 3 },
{ "id": 653, "label": 0, "f1": 2, "f2":7, "f3": 8 },
{ "id": 219, "label": 0, "f1": 4, "f2":9, "f3": 2 },
{ "id": 726, "label": 1, "f1": 6, "f2":1, "f3": 0 },
{ "id": 403, "label": 0, "f1": 1, "f2":5, "f3": 4 }
]"""
data = json.loads(json_data)
feature_names = ["f1", "f2", "f3"]
labels = []
features = []
for item in data:
temp_list = []
labels.append(item["label"])
for feature_name in feature_names:
temp_list.append(item[feature_name])
features.append(temp_list)
labels_train, labels_test, features_train, features_test = train_test_split(labels, features, test_size = .20, random_state = 99)
print labels_test
print features_test
## this will give us labels_test = [0], features_test = [[4,9,2]] which corresponds to record with id = 219
## how can I efficiently correlate the split data back to the original records without comparing feature values?
【问题讨论】:
标签: python scikit-learn