README.md
setup.py
examples/__init__.py
examples/pytorch/__init__.py
examples/pytorch/kg_completion/__init__.py
examples/pytorch/kg_completion/kinship/__init__.py
examples/pytorch/kg_completion/kinship/main.py
examples/pytorch/nmt/__init__.py
examples/pytorch/nmt/check.py
examples/pytorch/nmt/dataset.py
examples/pytorch/nmt/main.py
examples/pytorch/nmt/preprocess.py
examples/pytorch/nmt/test.py
examples/pytorch/question_generation/__init__.py
examples/pytorch/question_generation/legacy_run_question_generation.py
examples/pytorch/question_generation/run_question_generation.py
examples/pytorch/semantic_parsing/__init__.py
examples/pytorch/semantic_parsing/graph2seq/__init__.py
examples/pytorch/semantic_parsing/graph2seq/args.py
examples/pytorch/semantic_parsing/graph2seq/build_model.py
examples/pytorch/semantic_parsing/graph2seq/evaluation.py
examples/pytorch/semantic_parsing/graph2seq/main.py
examples/pytorch/semantic_parsing/graph2seq/test.py
examples/pytorch/semantic_parsing/graph2seq/utils.py
examples/pytorch/semantic_parsing/graph2seq/config/__init__.py
examples/pytorch/semantic_parsing/graph2tree/__init__.py
examples/pytorch/semantic_parsing/graph2tree/src/__init__.py
examples/pytorch/semantic_parsing/graph2tree/src/runner_geo.py
examples/pytorch/semantic_parsing/graph2tree/src/runner_jobs.py
examples/pytorch/summarization/__init__.py
examples/pytorch/summarization/cnn/__init__.py
examples/pytorch/summarization/cnn/config_g2s.py
examples/pytorch/summarization/cnn/dataset.py
examples/pytorch/summarization/cnn/loss.py
examples/pytorch/summarization/cnn/main.py
examples/pytorch/summarization/cnn/main_g2s.py
examples/pytorch/summarization/cnn/model_g2s.py
examples/pytorch/summarization/cnn/preprocess.py
examples/pytorch/summarization/cnn/rouge.py
examples/pytorch/summarization/cnn/utils.py
examples/pytorch/text_classification/__init__.py
examples/pytorch/text_classification/run_text_classifier.py
graph4nlp/__init__.py
graph4nlp.egg-info/PKG-INFO
graph4nlp.egg-info/SOURCES.txt
graph4nlp.egg-info/dependency_links.txt
graph4nlp.egg-info/requires.txt
graph4nlp.egg-info/top_level.txt
graph4nlp/pytorch/__init__.py
graph4nlp/pytorch/data/__init__.py
graph4nlp/pytorch/data/data.py
graph4nlp/pytorch/data/dataset.py
graph4nlp/pytorch/data/utils.py
graph4nlp/pytorch/data/views.py
graph4nlp/pytorch/datasets/__init__.py
graph4nlp/pytorch/datasets/cnn.py
graph4nlp/pytorch/datasets/data_utils.py
graph4nlp/pytorch/datasets/geo.py
graph4nlp/pytorch/datasets/jobs.py
graph4nlp/pytorch/datasets/kinship.py
graph4nlp/pytorch/datasets/mathqa.py
graph4nlp/pytorch/datasets/mawps.py
graph4nlp/pytorch/datasets/squad.py
graph4nlp/pytorch/datasets/trec.py
graph4nlp/pytorch/models/__init__.py
graph4nlp/pytorch/models/base.py
graph4nlp/pytorch/models/graph2seq.py
graph4nlp/pytorch/models/graph2seq_loss.py
graph4nlp/pytorch/models/graph2tree.py
graph4nlp/pytorch/modules/__init__.py
graph4nlp/pytorch/modules/config/__init__.py
graph4nlp/pytorch/modules/config/graph_construction/__init__.py
graph4nlp/pytorch/modules/config/graph_embedding/__init__.py
graph4nlp/pytorch/modules/config/prediction/__init__.py
graph4nlp/pytorch/modules/config/prediction/generation/__init__.py
graph4nlp/pytorch/modules/evaluation/__init__.py
graph4nlp/pytorch/modules/evaluation/accuracy.py
graph4nlp/pytorch/modules/evaluation/base.py
graph4nlp/pytorch/modules/evaluation/bleu.py
graph4nlp/pytorch/modules/evaluation/bleu_translation.py
graph4nlp/pytorch/modules/evaluation/cider.py
graph4nlp/pytorch/modules/evaluation/meteor.py
graph4nlp/pytorch/modules/evaluation/rouge.py
graph4nlp/pytorch/modules/evaluation/rouge_summarization.py
graph4nlp/pytorch/modules/evaluation/bleu_tool/__init__.py
graph4nlp/pytorch/modules/evaluation/bleu_tool/bleu.py
graph4nlp/pytorch/modules/evaluation/bleu_tool/bleu_scorer.py
graph4nlp/pytorch/modules/evaluation/cider_tool/__init__.py
graph4nlp/pytorch/modules/evaluation/cider_tool/cider.py
graph4nlp/pytorch/modules/evaluation/cider_tool/cider_scorer.py
graph4nlp/pytorch/modules/evaluation/meteor_tool/__init__.py
graph4nlp/pytorch/modules/evaluation/meteor_tool/meteor.py
graph4nlp/pytorch/modules/evaluation/meteor_tool/data/__init__.py
graph4nlp/pytorch/modules/evaluation/rouge_tool/__init__.py
graph4nlp/pytorch/modules/evaluation/rouge_tool/rouge.py
graph4nlp/pytorch/modules/graph_construction/__init__.py
graph4nlp/pytorch/modules/graph_construction/base.py
graph4nlp/pytorch/modules/graph_construction/constituency_graph_construction.py
graph4nlp/pytorch/modules/graph_construction/dependency_graph_construction.py
graph4nlp/pytorch/modules/graph_construction/embedding_construction.py
graph4nlp/pytorch/modules/graph_construction/ie_graph_construction.py
graph4nlp/pytorch/modules/graph_construction/node_embedding_based_graph_construction.py
graph4nlp/pytorch/modules/graph_construction/node_embedding_based_refined_graph_construction.py
graph4nlp/pytorch/modules/graph_construction/utility_functions.py
graph4nlp/pytorch/modules/graph_construction/utils.py
graph4nlp/pytorch/modules/graph_embedding/__init__.py
graph4nlp/pytorch/modules/graph_embedding/base.py
graph4nlp/pytorch/modules/graph_embedding/gat.py
graph4nlp/pytorch/modules/graph_embedding/gcn.py
graph4nlp/pytorch/modules/graph_embedding/ggnn.py
graph4nlp/pytorch/modules/graph_embedding/graphsage.py
graph4nlp/pytorch/modules/loss/__init__.py
graph4nlp/pytorch/modules/loss/base.py
graph4nlp/pytorch/modules/loss/coverage_loss.py
graph4nlp/pytorch/modules/loss/cross_entropy_loss.py
graph4nlp/pytorch/modules/loss/general_loss.py
graph4nlp/pytorch/modules/loss/kg_loss.py
graph4nlp/pytorch/modules/loss/seq_generation_loss.py
graph4nlp/pytorch/modules/prediction/__init__.py
graph4nlp/pytorch/modules/prediction/classification/__init__.py
graph4nlp/pytorch/modules/prediction/classification/base.py
graph4nlp/pytorch/modules/prediction/classification/graph_classification/__init__.py
graph4nlp/pytorch/modules/prediction/classification/graph_classification/avg_pooling.py
graph4nlp/pytorch/modules/prediction/classification/graph_classification/feedforward_nn.py
graph4nlp/pytorch/modules/prediction/classification/graph_classification/max_pooling.py
graph4nlp/pytorch/modules/prediction/classification/kg_completion/ComplEx.py
graph4nlp/pytorch/modules/prediction/classification/kg_completion/ComplExLayer.py
graph4nlp/pytorch/modules/prediction/classification/kg_completion/DistMult.py
graph4nlp/pytorch/modules/prediction/classification/kg_completion/DistMultLayer.py
graph4nlp/pytorch/modules/prediction/classification/kg_completion/TransE.py
graph4nlp/pytorch/modules/prediction/classification/kg_completion/TransELayer.py
graph4nlp/pytorch/modules/prediction/classification/kg_completion/__init__.py
graph4nlp/pytorch/modules/prediction/classification/link_prediction/ConcatFeedForwardNN.py
graph4nlp/pytorch/modules/prediction/classification/link_prediction/ConcatFeedForwardNNLayer.py
graph4nlp/pytorch/modules/prediction/classification/link_prediction/ElementSum.py
graph4nlp/pytorch/modules/prediction/classification/link_prediction/ElementSumLayer.py
graph4nlp/pytorch/modules/prediction/classification/link_prediction/StackedElementProd.py
graph4nlp/pytorch/modules/prediction/classification/link_prediction/StackedElementProdLayer.py
graph4nlp/pytorch/modules/prediction/classification/link_prediction/__init__.py
graph4nlp/pytorch/modules/prediction/classification/node_classification/BiLSTMFeedForwardNN.py
graph4nlp/pytorch/modules/prediction/classification/node_classification/BiLSTMFeedForwardNNLayer.py
graph4nlp/pytorch/modules/prediction/classification/node_classification/FeedForwardNN.py
graph4nlp/pytorch/modules/prediction/classification/node_classification/FeedForwardNNLayer.py
graph4nlp/pytorch/modules/prediction/classification/node_classification/__init__.py
graph4nlp/pytorch/modules/prediction/generation/StdRNNDecoder.py
graph4nlp/pytorch/modules/prediction/generation/TreeBasedDecoder.py
graph4nlp/pytorch/modules/prediction/generation/__init__.py
graph4nlp/pytorch/modules/prediction/generation/attention.py
graph4nlp/pytorch/modules/prediction/generation/base.py
graph4nlp/pytorch/modules/prediction/generation/decoder_strategy.py
graph4nlp/pytorch/modules/utils/__init__.py
graph4nlp/pytorch/modules/utils/bert_utils.py
graph4nlp/pytorch/modules/utils/config_utils.py
graph4nlp/pytorch/modules/utils/constants.py
graph4nlp/pytorch/modules/utils/copy_utils.py
graph4nlp/pytorch/modules/utils/generic_utils.py
graph4nlp/pytorch/modules/utils/logger.py
graph4nlp/pytorch/modules/utils/padding_utils.py
graph4nlp/pytorch/modules/utils/tree_utils.py
graph4nlp/pytorch/modules/utils/vocab_utils.py
graph4nlp/pytorch/test/__init__.py
graph4nlp/pytorch/test/utils.py
graph4nlp/pytorch/test/data_structure/__init__.py
graph4nlp/pytorch/test/data_structure/test_graphdata.py
graph4nlp/pytorch/test/evaluation/__init__.py
graph4nlp/pytorch/test/evaluation/test_accuracy.py
graph4nlp/pytorch/test/evaluation/test_bleu.py
graph4nlp/pytorch/test/evaluation/test_cider.py
graph4nlp/pytorch/test/evaluation/test_meteor.py
graph4nlp/pytorch/test/evaluation/test_rouge_l.py
graph4nlp/pytorch/test/example/__init__.py
graph4nlp/pytorch/test/example/jobs/__init__.py
graph4nlp/pytorch/test/example/jobs/graph2seq/__init__.py
graph4nlp/pytorch/test/example/jobs/graph2seq/main.py
graph4nlp/pytorch/test/example/kinship/__init__.py
graph4nlp/pytorch/test/example/kinship/main.py
graph4nlp/pytorch/test/graph_classification/__init__.py
graph4nlp/pytorch/test/graph_classification/legacy_run_graph_classification.py
graph4nlp/pytorch/test/graph_classification/run_graph_classification.py
graph4nlp/pytorch/test/graph_construction/__init__.py
graph4nlp/pytorch/test/graph_construction/run_batch_graph_embedding_construction.py
graph4nlp/pytorch/test/graph_construction/run_dynamic_graph_construction.py
graph4nlp/pytorch/test/graph_construction/run_dynamic_text_graph_construction.py
graph4nlp/pytorch/test/graph_construction/test_constituecy_graph_construction.py
graph4nlp/pytorch/test/graph_construction/test_dependency_construction.py
graph4nlp/pytorch/test/graph_construction/test_embedding_construction.py
graph4nlp/pytorch/test/graph_construction/test_ie_graph_construction.py
graph4nlp/pytorch/test/graph_embedding/__init__.py
graph4nlp/pytorch/test/graph_embedding/run_gat.py
graph4nlp/pytorch/test/graph_embedding/run_gcn.py
graph4nlp/pytorch/test/graph_embedding/run_ggnn.py
graph4nlp/pytorch/test/graph_embedding/run_graphsage.py
graph4nlp/pytorch/test/graph_embedding/utils.py
graph4nlp/pytorch/test/link_prediction/__init__.py
graph4nlp/pytorch/test/link_prediction/layers.py
graph4nlp/pytorch/test/link_prediction/link_prediction_test.py
graph4nlp/pytorch/test/link_prediction/model.py
graph4nlp/pytorch/test/link_prediction/optimizer.py
graph4nlp/pytorch/test/link_prediction/utils.py
graph4nlp/pytorch/test/node_classification/__init__.py
graph4nlp/pytorch/test/node_classification/node_classification_test.py