gNB = GaussianNB() # alpha \'1\' means smooth \'0\' means no smoothing gNB.fit(features_train, labels_train) pred_from_test_data = gNB.predict(features_test) g_pred