Github will be the main account and bitbucket the secondary.
Use Homebrew to install Git.
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Github will be the main account and bitbucket the secondary.
Use Homebrew to install Git.
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
import pandas as pd | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
def print_confusion_matrix(confusion_matrix, class_names, figsize = (10,7), fontsize=14): | |
"""Prints a confusion matrix, as returned by sklearn.metrics.confusion_matrix, as a heatmap. | |
Arguments | |
--------- | |
confusion_matrix: numpy.ndarray |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |