├── .gitignore ├── LICENSE ├── README.md ├── images └── SGCP.png ├── requirements.txt ├── setup.sh └── src ├── args.py ├── bleu.py ├── create_vocab.py ├── dataloader.py ├── evaluation ├── ParaphraseDetection │ ├── args.py │ ├── dataset.py │ ├── main.py │ └── model.py ├── eval.py ├── eval_utils.py └── kappa.py ├── helper.py ├── main.py ├── model.py ├── models ├── attention.py ├── encoderrnn.py ├── pointergen.py └── treeencoder.py ├── utils ├── candidate_selection.py ├── clean_generations.py └── con_parser.py └── word_embedding_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/README.md -------------------------------------------------------------------------------- /images/SGCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/images/SGCP.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/setup.sh -------------------------------------------------------------------------------- /src/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/args.py -------------------------------------------------------------------------------- /src/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/bleu.py -------------------------------------------------------------------------------- /src/create_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/create_vocab.py -------------------------------------------------------------------------------- /src/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/dataloader.py -------------------------------------------------------------------------------- /src/evaluation/ParaphraseDetection/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/evaluation/ParaphraseDetection/args.py -------------------------------------------------------------------------------- /src/evaluation/ParaphraseDetection/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/evaluation/ParaphraseDetection/dataset.py -------------------------------------------------------------------------------- /src/evaluation/ParaphraseDetection/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/evaluation/ParaphraseDetection/main.py -------------------------------------------------------------------------------- /src/evaluation/ParaphraseDetection/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/evaluation/ParaphraseDetection/model.py -------------------------------------------------------------------------------- /src/evaluation/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/evaluation/eval.py -------------------------------------------------------------------------------- /src/evaluation/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/evaluation/eval_utils.py -------------------------------------------------------------------------------- /src/evaluation/kappa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/evaluation/kappa.py -------------------------------------------------------------------------------- /src/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/helper.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/main.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/model.py -------------------------------------------------------------------------------- /src/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/models/attention.py -------------------------------------------------------------------------------- /src/models/encoderrnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/models/encoderrnn.py -------------------------------------------------------------------------------- /src/models/pointergen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/models/pointergen.py -------------------------------------------------------------------------------- /src/models/treeencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/models/treeencoder.py -------------------------------------------------------------------------------- /src/utils/candidate_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/utils/candidate_selection.py -------------------------------------------------------------------------------- /src/utils/clean_generations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/utils/clean_generations.py -------------------------------------------------------------------------------- /src/utils/con_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/utils/con_parser.py -------------------------------------------------------------------------------- /src/word_embedding_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/SGCP/HEAD/src/word_embedding_utils.py --------------------------------------------------------------------------------