서포트 벡터 머신
1. 손글씨 데이터셋from sklearn.datasets import load_digitsdigits = load_digits()digits.keys()# dict_keys(['data', 'target', 'frame', 'feature_names', 'target_names', 'images', 'DESCR'])data = digits['data']data.shape# (1797, 64)target = digits['target']target.shape# (1797,)target# array([0, 1, 2, ..., 8, 9, 8])import matplotlib.pyplot as plt_, axes = plt.subplots(2, 5, figsize=(14, 8))for i , ax in enu..
2024. 6. 12.