├── .idea ├── PAPER-In-CODE.iml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Attention Is All You Need └── README.md ├── Bi-RCNN-Relation-Classification ├── Biutil.py ├── README.md ├── bircnn.py ├── config_environment.py ├── config_hyper_parameter.py ├── data_generator.py ├── dependency_parse.py ├── pre_process.py ├── sentence_clean.py └── stanford.py ├── Interactive Matching Network for Multi-Turn Response Selection ├── __init__.py ├── models │ ├── __init__.py │ ├── config.py │ ├── data_helpers.py │ ├── eval.py │ ├── metrics.py │ ├── model_IMN.py │ └── train.py └── scripts │ └── compute_recall.py ├── Learning Structured Nature Language Representations for Semantic Parsing ├── generic_tree_generator │ ├── README.md │ ├── layers.py │ ├── main.py │ ├── model.py │ ├── post_process.py │ ├── pre_process.py │ ├── sexp.py │ └── tree.py └── sematic_parser │ ├── README.md │ ├── attention.py │ ├── derivation.py │ ├── kb_simple │ ├── README.md │ ├── attention.py │ ├── data │ │ └── example.graph │ ├── derivation.py │ ├── executor.py │ ├── generate_train_graph.py │ ├── generate_train_graph_spade.py │ ├── layers.py │ ├── loader_ranker.py │ ├── main.py │ ├── misc.py │ ├── model.py │ ├── post_process.py │ ├── pre_process.py │ ├── ranker.py │ ├── sempre_evaluation_lib.py │ ├── session.py │ ├── sexp.py │ ├── small_kb.py │ ├── test_ranker.py │ ├── train_ranker.py │ ├── tree.py │ └── util.py │ ├── layers.py │ ├── main.py │ ├── model.py │ ├── post_process.py │ ├── pre_process.py │ ├── sexp.py │ ├── tables │ ├── README.md │ ├── attention.py │ ├── db.py │ ├── derivation.py │ ├── layers.py │ ├── main.py │ ├── model.py │ ├── post_process.py │ ├── pre_process.py │ ├── sexp.py │ ├── tinydb │ │ ├── __init__.py │ │ ├── database.py │ │ ├── executor.py │ │ ├── middlewares.py │ │ ├── operations.py │ │ ├── queries.py │ │ ├── storages.py │ │ └── utils.py │ ├── tree.py │ └── util.py │ ├── tree.py │ └── util.py ├── Paper ├── Attention Is All You Need.pdf ├── Attention-Based Bidirectional Long Short-Term Memory Networks for Relation Classification.pdf ├── Bidirectional Recurrent Convolutional Neural Network for Relation classification.pdf ├── Deep Semantic Role Labeling with Self-Attention.pdf ├── Distant Supervision for Relation Extraction with Sentence-level Attention and Entiry Recognition.pdf ├── End-to-End Relation Extraction using LSTMs on Sequences and Tree Structures.pdf └── Learning Structured Natural Language Representations for Semantic Parsing.pdf ├── README.md └── Universal Sentence Encoder ├── README.md ├── classifier.py ├── data.py ├── data ├── README.md ├── script.bash └── tokenizer.sed ├── helper.py ├── main.py ├── nn_layer.py ├── test.py ├── train.py └── util.py /.idea/PAPER-In-CODE.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/.idea/PAPER-In-CODE.iml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Attention Is All You Need/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Attention Is All You Need/README.md -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/Biutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/Biutil.py -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/README.md -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/bircnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/bircnn.py -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/config_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/config_environment.py -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/config_hyper_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/config_hyper_parameter.py -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/data_generator.py -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/dependency_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/dependency_parse.py -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/pre_process.py -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/sentence_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/sentence_clean.py -------------------------------------------------------------------------------- /Bi-RCNN-Relation-Classification/stanford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Bi-RCNN-Relation-Classification/stanford.py -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Interactive Matching Network for Multi-Turn Response Selection/__init__.py -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/models/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Interactive Matching Network for Multi-Turn Response Selection/models/config.py -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/models/data_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Interactive Matching Network for Multi-Turn Response Selection/models/data_helpers.py -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/models/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Interactive Matching Network for Multi-Turn Response Selection/models/eval.py -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/models/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Interactive Matching Network for Multi-Turn Response Selection/models/metrics.py -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/models/model_IMN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Interactive Matching Network for Multi-Turn Response Selection/models/model_IMN.py -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/models/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Interactive Matching Network for Multi-Turn Response Selection/models/train.py -------------------------------------------------------------------------------- /Interactive Matching Network for Multi-Turn Response Selection/scripts/compute_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Interactive Matching Network for Multi-Turn Response Selection/scripts/compute_recall.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/README.md -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/layers.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/main.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/model.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/post_process.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/pre_process.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/sexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/sexp.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/generic_tree_generator/tree.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/README.md -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/attention.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/derivation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/derivation.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/README.md -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/attention.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/data/example.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/data/example.graph -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/derivation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/derivation.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/executor.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/generate_train_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/generate_train_graph.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/generate_train_graph_spade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/generate_train_graph_spade.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/layers.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/loader_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/loader_ranker.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/main.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/misc.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/model.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/post_process.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/pre_process.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/ranker.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/sempre_evaluation_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/sempre_evaluation_lib.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/session.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/sexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/sexp.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/small_kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/small_kb.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/test_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/test_ranker.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/train_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/train_ranker.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/tree.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/kb_simple/util.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/layers.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/main.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/model.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/post_process.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/pre_process.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/sexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/sexp.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/README.md -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/attention.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/db.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/derivation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/derivation.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/layers.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/main.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/model.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/post_process.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/pre_process.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/sexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/sexp.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/__init__.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/database.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/executor.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/middlewares.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/operations.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/queries.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/storages.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tinydb/utils.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/tree.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tables/util.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/tree.py -------------------------------------------------------------------------------- /Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Learning Structured Nature Language Representations for Semantic Parsing/sematic_parser/util.py -------------------------------------------------------------------------------- /Paper/Attention Is All You Need.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Paper/Attention Is All You Need.pdf -------------------------------------------------------------------------------- /Paper/Attention-Based Bidirectional Long Short-Term Memory Networks for Relation Classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Paper/Attention-Based Bidirectional Long Short-Term Memory Networks for Relation Classification.pdf -------------------------------------------------------------------------------- /Paper/Bidirectional Recurrent Convolutional Neural Network for Relation classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Paper/Bidirectional Recurrent Convolutional Neural Network for Relation classification.pdf -------------------------------------------------------------------------------- /Paper/Deep Semantic Role Labeling with Self-Attention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Paper/Deep Semantic Role Labeling with Self-Attention.pdf -------------------------------------------------------------------------------- /Paper/Distant Supervision for Relation Extraction with Sentence-level Attention and Entiry Recognition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Paper/Distant Supervision for Relation Extraction with Sentence-level Attention and Entiry Recognition.pdf -------------------------------------------------------------------------------- /Paper/End-to-End Relation Extraction using LSTMs on Sequences and Tree Structures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Paper/End-to-End Relation Extraction using LSTMs on Sequences and Tree Structures.pdf -------------------------------------------------------------------------------- /Paper/Learning Structured Natural Language Representations for Semantic Parsing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Paper/Learning Structured Natural Language Representations for Semantic Parsing.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PAPER-In-CODE 2 | 此项目为在阅读文献过程中的代码实现, 3 | 目录为: 4 | - Bi-RCNN-Relation-Classification 基于深度学习的关系抽取 5 | -------------------------------------------------------------------------------- /Universal Sentence Encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/README.md -------------------------------------------------------------------------------- /Universal Sentence Encoder/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/classifier.py -------------------------------------------------------------------------------- /Universal Sentence Encoder/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/data.py -------------------------------------------------------------------------------- /Universal Sentence Encoder/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/data/README.md -------------------------------------------------------------------------------- /Universal Sentence Encoder/data/script.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/data/script.bash -------------------------------------------------------------------------------- /Universal Sentence Encoder/data/tokenizer.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/data/tokenizer.sed -------------------------------------------------------------------------------- /Universal Sentence Encoder/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/helper.py -------------------------------------------------------------------------------- /Universal Sentence Encoder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/main.py -------------------------------------------------------------------------------- /Universal Sentence Encoder/nn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/nn_layer.py -------------------------------------------------------------------------------- /Universal Sentence Encoder/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/test.py -------------------------------------------------------------------------------- /Universal Sentence Encoder/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/train.py -------------------------------------------------------------------------------- /Universal Sentence Encoder/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/PAPER-In-CODE/HEAD/Universal Sentence Encoder/util.py --------------------------------------------------------------------------------