SVM - Práctica de clasificación con SVC (caso sencillo)
python import matplotlib.pyplot as plt from sklearn.svm import SVC python x_coord = [1, 0.5, 2, 1.5, 6, 7, 7.75, 9] y_coord = [4, 0.5, 3, 2.5, 9, 10, 9.5, 8.5] y = np.array([0, 0, 0, 0, 1, 1, 1, 1]) …
Leer más