diff options
author | Alex Auvolat <alex@adnab.me> | 2015-07-10 19:20:57 -0400 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2015-07-10 19:20:57 -0400 |
commit | c5187418bc93c34e3fdce4fdc1a3b5316812b69a (patch) | |
tree | 0e9330fe748998b1be54ccec3ea1fcea877ef860 /Makefile | |
parent | 793be7b049cecba43072858341dc7006fef352e7 (diff) | |
download | taxi-c5187418bc93c34e3fdce4fdc1a3b5316812b69a.tar.gz taxi-c5187418bc93c34e3fdce4fdc1a3b5316812b69a.zip |
Add documentation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2dc587f --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +FILES=config/__init__.py \ + config/dest_mlp_tgtcls_1_cswdtx_alexandre.py \ + data/cuts/__init__.py \ + data/cuts/test_times_0.py \ + data/__init__.py \ + data/csv_to_hdf5.py \ + data/hdf5.py \ + data/init_valid.py \ + data/make_valid_cut.py \ + data/transformers.py \ + model/__init__.py \ + model/mlp.py \ + model/dest_mlp_tgtcls.py \ + data_analysis/cluster_arrival.py \ + doc/report.pdf \ + __init__.py \ + error.py \ + ext_saveload.py \ + ext_test.py \ + train.py + +submission.tgz: $(FILES) + tar czf $@ $(FILES) |