Updated 4/11/2018
Here's my experience of installing the NVIDIA CUDA kit 9.0 on a fresh install of Ubuntu Desktop 16.04.4 LTS.
Updated 4/11/2018
Here's my experience of installing the NVIDIA CUDA kit 9.0 on a fresh install of Ubuntu Desktop 16.04.4 LTS.
| # Example of Naive Bayes implemented from Scratch in Python | |
| #http://machinelearningmastery.com/naive-bayes-classifier-scratch-python/ | |
| import csv | |
| import random | |
| import math | |
| def loadCsv(filename): | |
| lines = csv.reader(open(filename, "rb")) | |
| dataset = list(lines) | |
| for i in range(len(dataset)): |
Getting started:
Related tutorials: