taxi

Winning entry to the Kaggle taxi competition
git clone https://esimon.eu/repos/taxi.git
Log | Files | Refs | README

Makefile (537B)


      1 FILES=config/__init__.py \
      2 	  config/dest_mlp_tgtcls_1_cswdtx_alexandre.py \
      3 	  data/cuts/__init__.py \
      4 	  data/cuts/test_times_0.py \
      5 	  data/__init__.py \
      6 	  data/csv_to_hdf5.py \
      7 	  data/hdf5.py \
      8 	  data/init_valid.py \
      9 	  data/make_valid_cut.py \
     10 	  data/transformers.py \
     11 	  model/__init__.py \
     12 	  model/mlp.py \
     13 	  model/dest_mlp_tgtcls.py \
     14 	  data_analysis/cluster_arrival.py \
     15 	  doc/report.pdf \
     16 	  __init__.py \
     17 	  error.py \
     18 	  ext_saveload.py \
     19 	  ext_test.py \
     20 	  train.py
     21 		
     22 submission.tgz: $(FILES)
     23 	tar czf $@ $(FILES)