Skip to content

evoup/cause-effect

 
 

Repository files navigation

Welcome!

This Git repository is for members of the meetup group Data Insights Cambridge, who are participating in the Data Insights team in the Kaggle competition 'Cause-effect pairs'.

Plan

A Data Insights Cambridge team has been created on Kaggle. Please join this. James Lloyd has downloaded into this Git repository the competition data and any other relevant docs.

Please work on your own separate predictions, and submit your solutions to the Git repository when ready. James will then lead the aggregation of the predictions (we might get-together for a 'hack day' to do this). James will submit final solutions to Kaggle by the deadline (in about 3 months). There will be a get-together scheduled for about 4-6 weeks time for all participants to touch-base (details will be posted on meetup).

Terms

All proprietary solutions and data are free for all members of the repository to use under a Creative Commons Attribution 3.0 license.

By using this Git repository you agree to these terms.

Good luck!

Dependencies

R

  • randomForest

python

  • numpy
  • scipy

How to use this repo

  • Clone the repo
  • Copy the contents of this into data/raw
  • Change directory to source
  • Run python run.py
  • Examine the script above and the scripts it subsequently calls to understand how everything is set up (apologies - things are too fast moving to write a more explicit guide)

Updates

  • I have updated the data files - I am no longer splitting into training and ensemble training - also, I have generated extra data (for each pair (A,B), also include (B,A)) - this is in the directory data/training-flipped
  • I recommend that people generate features using methods that don't perform any learning - this way all features can be used when training the final classifier
  • I recommend that everyone focuses on producing real valued features
  • The raw data is no longer in the repo - it can be found here

Repository / challenge details

See the competition description for an introduction.

An important subtlety is the scoring metric

  • The training data has 4 class labels, A->B, B->A, A|B, A-B
  • The last two classes are typically referred to collectively as the 'null class'
  • Final submissions to Kaggle should take the form of a number in [-Inf, +Inf] for each test example
  • The evaluation metric is the average of two AUCs - one testing accuracy on the clasfication task A->B vs. (B->A, A|B, A-B) and the other B->A vs. (A->B, A|B, A-B)

(See updates before reading comment below) At the moment I am undecided if it will be best for everyone to produce predicted probabilities for the 4 class problem, 3 class problem (combining A-B and A|B) or producing scores in the range [-Inf, +Inf] directly. For the moment I recommend trying to produce all of these measures, or work on whichever seems most natural for you. We can use everything in the final aggregation stage.

OUT OF DATE - Planned workflow / repository usage

  • Develop predictors using the data in data/training
  • Evaluate the predictors on all training examples (see updates before reading me) (data/training, data/ensemble_training, data/kaggle_validation) and put the output in the predictors directory
  • Ensembling / aggregation methods will be used to combine the base predictors into a combined prediction, using data/ensemble_training as training data
  • Submissions will then be made to Kaggle, recording output in submissions

OUT OF DATE - Directory structure

data

  • raw - Raw data files downloaded from Kaggle
  • training - Split of training data to be used for training base predictors
  • training-flipped - A copy of the training data, but with all flipped ((A,B) -> (B,A)) examples as well
  • validation - Test data examples with unknown targets

benchmark-code

Python implementation of benchmark provided by competition organisers

submissions

See basic_python_benchmark.csv for an example of the format for submission to Kaggle

features

Base features

About

Working code for Kaggle competition

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 71.9%
  • MATLAB 24.5%
  • R 3.4%
  • Perl 0.2%