本文整理匯總了Python中sklearn.datasets.fetch_olivetti_faces方法的典型用法代碼示例。如果您正苦於以下問題:Python datasets.fetch_olivetti_faces方法的具體用法?Python datasets.fetch_olivetti_faces怎麽用?Python datasets.fetch_olivetti_faces使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sklearn.datasets
的用法示例。
在下文中一共展示了datasets.fetch_olivetti_faces方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: load_data
# 需要導入模塊: from sklearn import datasets [as 別名]
# 或者: from sklearn.datasets import fetch_olivetti_faces [as 別名]
def load_data():
rng = np.random.RandomState(0)
dataset = fetch_olivetti_faces(shuffle=True, random_state=rng)
faces = dataset.images
target = dataset.target
classes = np.unique(target)
classes.sort()
ref_index = np.argmax(target == classes[:, None], axis=1)
valid_index = np.delete(np.arange(len(faces)), ref_index)
x_ref = faces[ref_index]
y_ref = target[ref_index]
x_valid = faces[valid_index]
y_valid = target[valid_index]
return x_ref, x_valid, y_ref, y_valid
示例2: getImgAsMat
# 需要導入模塊: from sklearn import datasets [as 別名]
# 或者: from sklearn.datasets import fetch_olivetti_faces [as 別名]
def getImgAsMat(index):
ds = datasets.fetch_olivetti_faces()
return np.mat(ds.images[index])