我正在尝试将2个div居中水平放置,但右侧的div却不与左侧的div居中放置。
import seaborn as sns
conf_mat = confusion_matrix(y_test, y_pred)
conf_mat_normalized = conf_mat.astype('float') / conf_mat.sum(axis=1)[:, np.newaxis]
sns.heatmap(conf_mat_normalized)
plt.ylabel('True label')
plt.xlabel('Predicted label')
我做了很多更改,但col-10保持在div的顶部。有人有主意吗?谢谢!