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]"
''' | |
This script will convert all flac files in the current directory and its subdirectories to mp3 files. | |
What's nice about this script is that it will also remove the flac files after converting them to mp3. | |
This script uses ffmpeg to convert the files. You need to have ffmpeg installed on your system. | |
To install ffmpeg on Ubuntu, run the following command: | |
``` | |
sudo apt-get install ffmpeg | |
``` |
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 |
from skopt import gp_minimize | |
from skopt.plots import plot_convergence | |
from IPython.display import clear_output | |
class ConvergencePlotCallback(object): | |
def __init__(self, figsize=(12,8)): | |
self.fig = plt.figure(figsize=figsize) | |
def __call__(self, res): |
.idea/ | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
# Distribution / packaging | |
.Python | |
build/ | |
develop-eggs/ |
{ | |
"name": "data", | |
"children": [ | |
{ | |
"name": "indoor", | |
"value": 33, | |
"colour": "#F00", | |
"children": [ | |
{ | |
"name": "question_1_1", |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |