Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
Getting started:
Related tutorials:
| # 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)): |
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.