Skip to content

Instantly share code, notes, and snippets.

View Rendiere's full-sized avatar

Renier Botha Rendiere

View GitHub Profile
@Rendiere
Rendiere / multi-git.md
Last active December 19, 2019 07:30 — forked from rosswd/multi-git-win.md
Setting up a Github and Bitbucket account on the same computer on Mac OS. Now with a guide for Windows 10.

Setting up github and bitbucket on the same computer (Mac OS)

Github will be the main account and bitbucket the secondary.

Intall Git

Use Homebrew to install Git.

Configure Git

  • git config --global user.name "Your Name"
  • git config --global user.email "[email protected]"
@Rendiere
Rendiere / confusion_matrix_pretty_print.py
Created May 17, 2019 08:56 — forked from shaypal5/confusion_matrix_pretty_print.py
Pretty print a confusion matrix with seaborn
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
@Rendiere
Rendiere / 0_reuse_code.js
Created April 5, 2017 12:02
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console