Skip to content

Instantly share code, notes, and snippets.

@dtemkin
dtemkin / MachineLearningModels.py
Last active July 13, 2016 03:36
Easy Machine Learning model testing using sklearn defaults
#!/usr/bin/python27
## I wrote this so that I could look at the results of a multiple models without worrying about the arguments and parameters
## right off the bat. I also wanted a script that would easy the process of splitting data (only handles one input and one output column).
import numpy as np
import pandas as pd
import types
class data(object):