Giter VIP home page Giter VIP logo

buckeyetix-ml's Introduction

Using SKLearn to Predict Ticket Price Viability

Setup

Without Virtualenv

git clone https://github.com/samuelstevens/buckeyetix-ml.git
cd buckeyetix-ml

pip install -r requirements.txt

With Virtualenv and Python 3 as default python

git clone https://github.com/samuelstevens/buckeyetix-ml.git
cd buckeyetix-ml

python3 -m venv venv

. venv/bin/activate

pip install -r requirements.txt

Running

Ensure that folder ~/tmp exists (and that you can write/read from it).

cp data/tickets.json ~/tmp/
python src/util/script.py
python src/datasci/linearSVC.py

# one line version (so that it's in bash history)
python src/util/script.py; python src/datasci/linearSVC.py

Notes

linearSVC.py seems to be the best balance between not overfitting and still being accurate. gradient.py can reach ~84% with particular parameters (most likely overfitted) and cross_val.py sits around 70% (not as accurate). linearSVC.py uses a LinearSVC with sklearn's StandardScaler() to scale and normalize the data. linearSVC.py achieves about 78% accuracy on both the training data and test data, even when the script.py is run each time (randomizing training vs testing datasets).

To Do

  • Add row number as parameter
  • Optimize process past simply trying every option

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.