cognoma / machine-learning

Machine learning for Project Cognoma
Other
32 stars 47 forks source link

Random_Projection Dimensionality Reduction #75

Closed KT12 closed 7 years ago

KT12 commented 7 years ago

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.

dhimmel commented 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.

dhimmel commented 7 years ago

Migrated to https://github.com/cognoma/machine-learning/pull/76.