├── keras └── src │ ├── chinese.py │ ├── dssm_keras.py │ ├── mnls_cnn.py │ ├── multiple_fully_connected_layer.py │ ├── my_embedding_layer.py │ ├── sparse_fully_connected_layer.py │ ├── training_data.py │ └── util.py └── theano └── src ├── debug_server ├── bootstrap-theme.min.css ├── bootstrap.min.css ├── bootstrap.zip ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── feature_dict.py ├── rerank_by_dssm.py ├── static │ ├── all_urls.txt │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js └── templates │ └── search.html ├── test ├── __init__.py └── test.py ├── training ├── __init__.py ├── __init__.pyc ├── click_data_v2.py ├── dssm.py ├── dssm.pyc ├── training_data.py └── training_data.pyc └── util ├── __init__.py ├── __init__.pyc ├── chinese.py ├── chinese.pyc ├── util.py └── util.pyc /keras/src/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/keras/src/chinese.py -------------------------------------------------------------------------------- /keras/src/dssm_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/keras/src/dssm_keras.py -------------------------------------------------------------------------------- /keras/src/mnls_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/keras/src/mnls_cnn.py -------------------------------------------------------------------------------- /keras/src/multiple_fully_connected_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/keras/src/multiple_fully_connected_layer.py -------------------------------------------------------------------------------- /keras/src/my_embedding_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/keras/src/my_embedding_layer.py -------------------------------------------------------------------------------- /keras/src/sparse_fully_connected_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/keras/src/sparse_fully_connected_layer.py -------------------------------------------------------------------------------- /keras/src/training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/keras/src/training_data.py -------------------------------------------------------------------------------- /keras/src/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/keras/src/util.py -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap-theme.min.css -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap.min.css -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap.zip -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /theano/src/debug_server/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /theano/src/debug_server/feature_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/feature_dict.py -------------------------------------------------------------------------------- /theano/src/debug_server/rerank_by_dssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/rerank_by_dssm.py -------------------------------------------------------------------------------- /theano/src/debug_server/static/all_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/all_urls.txt -------------------------------------------------------------------------------- /theano/src/debug_server/static/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /theano/src/debug_server/static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /theano/src/debug_server/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/css/bootstrap.css -------------------------------------------------------------------------------- /theano/src/debug_server/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /theano/src/debug_server/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /theano/src/debug_server/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /theano/src/debug_server/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /theano/src/debug_server/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /theano/src/debug_server/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /theano/src/debug_server/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/js/bootstrap.js -------------------------------------------------------------------------------- /theano/src/debug_server/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /theano/src/debug_server/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/debug_server/templates/search.html -------------------------------------------------------------------------------- /theano/src/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theano/src/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/test/test.py -------------------------------------------------------------------------------- /theano/src/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theano/src/training/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/training/__init__.pyc -------------------------------------------------------------------------------- /theano/src/training/click_data_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/training/click_data_v2.py -------------------------------------------------------------------------------- /theano/src/training/dssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/training/dssm.py -------------------------------------------------------------------------------- /theano/src/training/dssm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/training/dssm.pyc -------------------------------------------------------------------------------- /theano/src/training/training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/training/training_data.py -------------------------------------------------------------------------------- /theano/src/training/training_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/training/training_data.pyc -------------------------------------------------------------------------------- /theano/src/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theano/src/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/util/__init__.pyc -------------------------------------------------------------------------------- /theano/src/util/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/util/chinese.py -------------------------------------------------------------------------------- /theano/src/util/chinese.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/util/chinese.pyc -------------------------------------------------------------------------------- /theano/src/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/util/util.py -------------------------------------------------------------------------------- /theano/src/util/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outstandingcandy/dssm/HEAD/theano/src/util/util.pyc --------------------------------------------------------------------------------