├── .gitignore ├── LICENSE ├── README.md ├── configs ├── ablation │ ├── attrs.txt │ ├── neighbors.txt │ └── text.txt ├── base.txt ├── general │ ├── debug.txt │ ├── dropout-0.1.txt │ ├── fixed-glove.txt │ ├── neighbors.txt │ ├── no-dropout.txt │ └── vimium-filter.txt ├── model │ ├── alignment+encoding.txt │ ├── alignment.txt │ ├── encoding.txt │ └── ensemble.txt └── node-embedder │ ├── allan.txt │ ├── proppy.txt │ └── stupid.txt ├── demo ├── dummy-server.py └── phrasenode-demo │ ├── background.js │ ├── content.css │ ├── content.js │ ├── jquery-3.6.0.min.js │ └── manifest.json ├── docker └── Dockerfile ├── download_dataset.sh ├── gtd ├── main.py ├── phrasenode ├── __init__.py ├── batch_evaluate.py ├── constants.py ├── data.py ├── dataset.py ├── downloader │ ├── __init__.py │ ├── download.py │ ├── get-dom-info.js │ ├── instance.py │ └── storage.py ├── eval_run.py ├── model │ ├── __init__.py │ ├── alignment.py │ ├── encoding.py │ └── ensemble.py ├── node_embedder │ ├── __init__.py │ ├── allan.py │ ├── proppy.py │ └── stupid.py ├── node_filter.py ├── training_run.py ├── utils.py ├── utterance_embedder.py ├── vocab.py └── webpage.py ├── requirements.txt ├── server.py ├── tfidf-baseline ├── .gitignore ├── README.md ├── converter.js ├── converter2.js ├── files.js ├── index.js ├── neural-preprocess.js ├── package.json ├── preprocess.js ├── query.js ├── results.txt ├── tfidf.js ├── utils.js └── vimium │ ├── action_targets.js │ └── test.js └── third-party └── gtd ├── .gitignore ├── README.md ├── gtd ├── __init__.py ├── chrono.py ├── codalab.py ├── git_utils.py ├── graph.py ├── io.py ├── lm.py ├── log.py ├── ml │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_utils.py │ │ └── test_vocab.py │ ├── tf │ │ ├── __init__.py │ │ ├── framework.py │ │ ├── model.py │ │ ├── profile.py │ │ ├── seq_batch.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_framework.py │ │ │ ├── test_model.py │ │ │ ├── test_seq_batch.py │ │ │ └── test_utils.py │ │ ├── training_run.py │ │ └── utils.py │ ├── torch │ │ ├── __init__.py │ │ ├── alignments.py │ │ ├── attention.py │ │ ├── checkpoints.py │ │ ├── decoder.py │ │ ├── decoder_cell.py │ │ ├── feed_forward.py │ │ ├── multilayered_decoder_cell.py │ │ ├── recurrent.py │ │ ├── seq_batch.py │ │ ├── simple_decoder_cell.py │ │ ├── source_encoder.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_alignments.py │ │ │ ├── test_attention.py │ │ │ ├── test_recurrent.py │ │ │ ├── test_seq_batch.py │ │ │ ├── test_source_encoder.py │ │ │ ├── test_token_embedder.py │ │ │ └── test_utils.py │ │ ├── token_embedder.py │ │ ├── training_run.py │ │ └── utils.py │ ├── training_run.py │ ├── training_run_viewer.py │ ├── utils.py │ └── vocab.py ├── persist.py ├── plot.py ├── postgres.py ├── profile_imports.py ├── tests │ ├── __init__.py │ ├── test_graph.py │ ├── test_io.py │ ├── test_lm.py │ ├── test_log.py │ ├── test_persist.py │ └── test_utils.py ├── text.py ├── turk.py └── utils.py ├── requirements.txt ├── scripts ├── git_logs.py ├── run_docker.py └── run_nlpsub.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/README.md -------------------------------------------------------------------------------- /configs/ablation/attrs.txt: -------------------------------------------------------------------------------- 1 | model { 2 | ablate_attrs = true 3 | } 4 | -------------------------------------------------------------------------------- /configs/ablation/neighbors.txt: -------------------------------------------------------------------------------- 1 | model { 2 | use_neighbors = false 3 | } 4 | -------------------------------------------------------------------------------- /configs/ablation/text.txt: -------------------------------------------------------------------------------- 1 | model { 2 | ablate_text = true 3 | } 4 | -------------------------------------------------------------------------------- /configs/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/base.txt -------------------------------------------------------------------------------- /configs/general/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/general/debug.txt -------------------------------------------------------------------------------- /configs/general/dropout-0.1.txt: -------------------------------------------------------------------------------- 1 | model { 2 | dropout = 0.1 3 | } 4 | -------------------------------------------------------------------------------- /configs/general/fixed-glove.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/general/fixed-glove.txt -------------------------------------------------------------------------------- /configs/general/neighbors.txt: -------------------------------------------------------------------------------- 1 | model { 2 | use_neighbors = true 3 | } 4 | -------------------------------------------------------------------------------- /configs/general/no-dropout.txt: -------------------------------------------------------------------------------- 1 | model { 2 | dropout = 0.0 3 | } 4 | -------------------------------------------------------------------------------- /configs/general/vimium-filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/general/vimium-filter.txt -------------------------------------------------------------------------------- /configs/model/alignment+encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/model/alignment+encoding.txt -------------------------------------------------------------------------------- /configs/model/alignment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/model/alignment.txt -------------------------------------------------------------------------------- /configs/model/encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/model/encoding.txt -------------------------------------------------------------------------------- /configs/model/ensemble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/model/ensemble.txt -------------------------------------------------------------------------------- /configs/node-embedder/allan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/node-embedder/allan.txt -------------------------------------------------------------------------------- /configs/node-embedder/proppy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/node-embedder/proppy.txt -------------------------------------------------------------------------------- /configs/node-embedder/stupid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/configs/node-embedder/stupid.txt -------------------------------------------------------------------------------- /demo/dummy-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/demo/dummy-server.py -------------------------------------------------------------------------------- /demo/phrasenode-demo/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/demo/phrasenode-demo/background.js -------------------------------------------------------------------------------- /demo/phrasenode-demo/content.css: -------------------------------------------------------------------------------- 1 | .phrasenodeSelected { 2 | border: 5px solid red !important; 3 | } 4 | -------------------------------------------------------------------------------- /demo/phrasenode-demo/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/demo/phrasenode-demo/content.js -------------------------------------------------------------------------------- /demo/phrasenode-demo/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/demo/phrasenode-demo/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /demo/phrasenode-demo/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/demo/phrasenode-demo/manifest.json -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /download_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/download_dataset.sh -------------------------------------------------------------------------------- /gtd: -------------------------------------------------------------------------------- 1 | third-party/gtd/gtd/ -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/main.py -------------------------------------------------------------------------------- /phrasenode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phrasenode/batch_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/batch_evaluate.py -------------------------------------------------------------------------------- /phrasenode/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/constants.py -------------------------------------------------------------------------------- /phrasenode/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/data.py -------------------------------------------------------------------------------- /phrasenode/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/dataset.py -------------------------------------------------------------------------------- /phrasenode/downloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phrasenode/downloader/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/downloader/download.py -------------------------------------------------------------------------------- /phrasenode/downloader/get-dom-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/downloader/get-dom-info.js -------------------------------------------------------------------------------- /phrasenode/downloader/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/downloader/instance.py -------------------------------------------------------------------------------- /phrasenode/downloader/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/downloader/storage.py -------------------------------------------------------------------------------- /phrasenode/eval_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/eval_run.py -------------------------------------------------------------------------------- /phrasenode/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/model/__init__.py -------------------------------------------------------------------------------- /phrasenode/model/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/model/alignment.py -------------------------------------------------------------------------------- /phrasenode/model/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/model/encoding.py -------------------------------------------------------------------------------- /phrasenode/model/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/model/ensemble.py -------------------------------------------------------------------------------- /phrasenode/node_embedder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phrasenode/node_embedder/allan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/node_embedder/allan.py -------------------------------------------------------------------------------- /phrasenode/node_embedder/proppy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/node_embedder/proppy.py -------------------------------------------------------------------------------- /phrasenode/node_embedder/stupid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/node_embedder/stupid.py -------------------------------------------------------------------------------- /phrasenode/node_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/node_filter.py -------------------------------------------------------------------------------- /phrasenode/training_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/training_run.py -------------------------------------------------------------------------------- /phrasenode/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/utils.py -------------------------------------------------------------------------------- /phrasenode/utterance_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/utterance_embedder.py -------------------------------------------------------------------------------- /phrasenode/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/vocab.py -------------------------------------------------------------------------------- /phrasenode/webpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/phrasenode/webpage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/server.py -------------------------------------------------------------------------------- /tfidf-baseline/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *zip 3 | selector.js 4 | *swp 5 | answers 6 | -------------------------------------------------------------------------------- /tfidf-baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/README.md -------------------------------------------------------------------------------- /tfidf-baseline/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/converter.js -------------------------------------------------------------------------------- /tfidf-baseline/converter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/converter2.js -------------------------------------------------------------------------------- /tfidf-baseline/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/files.js -------------------------------------------------------------------------------- /tfidf-baseline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/index.js -------------------------------------------------------------------------------- /tfidf-baseline/neural-preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/neural-preprocess.js -------------------------------------------------------------------------------- /tfidf-baseline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/package.json -------------------------------------------------------------------------------- /tfidf-baseline/preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/preprocess.js -------------------------------------------------------------------------------- /tfidf-baseline/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/query.js -------------------------------------------------------------------------------- /tfidf-baseline/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/results.txt -------------------------------------------------------------------------------- /tfidf-baseline/tfidf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/tfidf.js -------------------------------------------------------------------------------- /tfidf-baseline/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/utils.js -------------------------------------------------------------------------------- /tfidf-baseline/vimium/action_targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/vimium/action_targets.js -------------------------------------------------------------------------------- /tfidf-baseline/vimium/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/tfidf-baseline/vimium/test.js -------------------------------------------------------------------------------- /third-party/gtd/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.ipynb 3 | *.pyc 4 | .cache 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /third-party/gtd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/README.md -------------------------------------------------------------------------------- /third-party/gtd/gtd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/gtd/gtd/chrono.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/chrono.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/codalab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/codalab.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/git_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/git_utils.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/graph.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/io.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/lm.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/log.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tests/test_utils.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tests/test_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tests/test_vocab.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/framework.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/model.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/profile.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/seq_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/seq_batch.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/tests/test_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/tests/test_framework.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/tests/test_model.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/tests/test_seq_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/tests/test_seq_batch.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/tests/test_utils.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/training_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/training_run.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/tf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/tf/utils.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/alignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/alignments.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/attention.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/checkpoints.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/decoder.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/decoder_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/decoder_cell.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/feed_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/feed_forward.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/multilayered_decoder_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/multilayered_decoder_cell.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/recurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/recurrent.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/seq_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/seq_batch.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/simple_decoder_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/simple_decoder_cell.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/source_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/source_encoder.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/tests/test_alignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/tests/test_alignments.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/tests/test_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/tests/test_attention.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/tests/test_recurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/tests/test_recurrent.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/tests/test_seq_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/tests/test_seq_batch.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/tests/test_source_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/tests/test_source_encoder.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/tests/test_token_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/tests/test_token_embedder.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/tests/test_utils.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/token_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/token_embedder.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/training_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/training_run.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/torch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/torch/utils.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/training_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/training_run.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/training_run_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/training_run_viewer.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/utils.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/ml/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/ml/vocab.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/persist.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/plot.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/postgres.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/profile_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/profile_imports.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/gtd/gtd/tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/tests/test_graph.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/tests/test_io.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/tests/test_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/tests/test_lm.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/tests/test_log.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/tests/test_persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/tests/test_persist.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/tests/test_utils.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/text.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/turk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/turk.py -------------------------------------------------------------------------------- /third-party/gtd/gtd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/gtd/utils.py -------------------------------------------------------------------------------- /third-party/gtd/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/requirements.txt -------------------------------------------------------------------------------- /third-party/gtd/scripts/git_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/scripts/git_logs.py -------------------------------------------------------------------------------- /third-party/gtd/scripts/run_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/scripts/run_docker.py -------------------------------------------------------------------------------- /third-party/gtd/scripts/run_nlpsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/scripts/run_nlpsub.py -------------------------------------------------------------------------------- /third-party/gtd/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/phrasenode/HEAD/third-party/gtd/setup.py --------------------------------------------------------------------------------