Closed KT12 closed 7 years ago
Sorry the pull request contains so many old commits. I couldn't figure out how to merge just the last commit (which contains the ipynb and py script.
What you got to do is rebase on the current state of cognoma:master
. First you'll need to configure an upstream remote that points to cognoma/machine-learning
. Then you can
git fetch upstream
git rebase upstream/master
# Then force push since you've rewritten history
git rebase push --force
In the future, you'll want to use a new branch (not master
) to make pull requests, so you can have multiple pull requests open at once. Here's a nice guide on the git workflow.
Migrated to https://github.com/cognoma/machine-learning/pull/76.
Used Gaussian Random Projection to reduce dimensionality of dataset before running the SGD Classifier.
Sorry the pull request contains so many old commits. I couldn't figure out how to merge just the last commit (which contains the ipynb and py script.