This list may grow each year with either new versions or patches. Enjoy!
Following is an example related to the usage of the various ignore capabilities.
For USB: https://gist.github.com/matijagrcic/564a17f3474c65b54bcc
Create a Setup USB drive from https://www.microsoft.com/en-us/software-download/windows10
Create a file named PID.txt in the Sources directory, with the following contents:
[PID] Value=VK7JG-NPHTM-C97JM-9MPGT-3V66T
Boot from this USB drive
For USB: https://gist.github.com/matijagrcic/564a17f3474c65b54bcc
Create a Setup USB drive from https://www.microsoft.com/en-us/software-download/windows10
Create a file named PID.txt in the Sources directory, with the following contents:
[PID] Value=VK7JG-NPHTM-C97JM-9MPGT-3V66T
Boot from this USB drive
| 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 |
| import numpy as np | |
| import theano | |
| import theano.tensor as T | |
| class RAE(object): | |
| def __init__(self, input, rng, d, W=None, b=None, U=None, c=None): | |
| dv = d | |
| dh = d * 2 | |
| self.dv = dv |
| Remove osxfuse if installed via homebrew: | |
| > brew uninstall osxfuse | |
| Install osxfuse binary and choose to install the MacFUSE compatibility layer: | |
| http://sourceforge.net/projects/osxfuse/files/latest/download?source=files | |
| Reboot (optional but recommended by osxfuse) | |
| Install ntfs-3g via homebrew: | |
| > brew update && brew install ntfs-3g |