├── README.md ├── cdssm2_loss_lr0.001_fout64_cf12345.png ├── data_helpers.py ├── download_log.sh ├── hcluster.py ├── kill_job.sh ├── model.py ├── mytf_utils.py ├── predict.py ├── start_dist_yarn.sh ├── start_locally.sh ├── start_single_yarn.sh ├── train.py └── train_dist.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/README.md -------------------------------------------------------------------------------- /cdssm2_loss_lr0.001_fout64_cf12345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/cdssm2_loss_lr0.001_fout64_cf12345.png -------------------------------------------------------------------------------- /data_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/data_helpers.py -------------------------------------------------------------------------------- /download_log.sh: -------------------------------------------------------------------------------- 1 | yarn logs -applicationId $1 >& ttt & 2 | 3 | -------------------------------------------------------------------------------- /hcluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/hcluster.py -------------------------------------------------------------------------------- /kill_job.sh: -------------------------------------------------------------------------------- 1 | yarn application -kill $1 2 | -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/model.py -------------------------------------------------------------------------------- /mytf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/mytf_utils.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/predict.py -------------------------------------------------------------------------------- /start_dist_yarn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/start_dist_yarn.sh -------------------------------------------------------------------------------- /start_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/start_locally.sh -------------------------------------------------------------------------------- /start_single_yarn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/start_single_yarn.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/train.py -------------------------------------------------------------------------------- /train_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingspy/cnn-dssm/HEAD/train_dist.py --------------------------------------------------------------------------------