plot_model(model, show_shapes=True, to_file='cnn-architecture.png', dpi=300) 를 plot_model(model, show_shapes=True)로 수정합니다. 또한 출력 결과에서 input과 output 박스에 있는 ? 를 None 으로 모두 수정합니다.conv_weights[:,:,:0,0]을 conv_weights[:,:,0,0]으로 정정하고 conv_weights[:,:,:0,31]을 conv_weights[:,:,0,31]로 정정합니다.DecisionTreeClassifier(max_features="auto", max_leaf_nodes=16, n_estimators=500, max_samples=1.0, bootstrap=True, n_jobs=-1)을 DecisionTreeClassifier(max_features="sqrt", max_leaf_nodes=16, n_estimators=500)로 정정합니다.updates 속성은 향후 삭제될 예정입니다.</주석>”epsilon_greedy_policy 함수에서 np.random.randint(2)를 np.random.randint(n_outputs)로 수정합니다.KNeighborsClassifier 클래스의 n_neighbors 매개변수 기본값은 5입니다.</주석>X_train = data_train.date[:, np.newaxis]를 X_train = data_train.date.to_numpy()[:, np.newaxis]로 수정하고 X_all = ram_prices.date[:, np.newaxis]를 X_all = ram_prices.date.to_numpy()[:, np.newaxis]로 수정합니다.svc = SVC(C=1000)을 svc = SVC(C=20)으로 수정합니다.mlp = MLPClassifier(solver='lbfgs', random_state=0, hidden_layer_size=[10, 10])를 mlp = MLPClassifier(solver='lbfgs', random_state=0, hidden_layer_size=[10, 10], max_iter=1000)로 수정합니다.logreg=LogisticRegression()을 logreg=LogisticRegression(max_iter=1000)로 수정합니다.svm = SVC(C=100)을 svm = SVC(gamma='auto')로 수정합니다.mglearn.plots.plot_nmf_faces(X_train, X_test, image_shape)을 mglearn.plots.plot_nmf_faces(X_train, X_test[:3], image_shape)로 수정합니다.nmf = NMF(n_components=15, random_state=0, max_iter=1000, tol=1e-2)를 nmf = NMF(n_components=15, init='nndsvd', random_state=0, max_iter=1000, tol=1e-2)로 수정합니다.spacy.load('en'을 spacy.load('en_core_web_sm'으로 수정합니다.