├── .DS_Store ├── README.md ├── exp-4.1-baseline ├── config.json ├── log.txt ├── model │ ├── char_dict │ ├── checkpoints.tsv │ ├── config │ ├── cons_label_dict │ ├── dep_label_dict │ ├── label_dict │ ├── pos_dict │ └── word_dict ├── predict.sh └── train.sh ├── figures ├── model.jpg └── model.pdf ├── scripts ├── convert_orl_conll_to_json.py ├── eval_averaged_metrics.py ├── eval_orl_conll_file.py ├── eval_orl_e2e_json_file.py ├── eval_orl_json_file.py └── generate_constituent_trees_from_benepar.py └── src ├── orl-4.1-ultimate-hard-e2e ├── __init__.py ├── analyze.py ├── neural_srl │ ├── TreeLSTM │ │ ├── Encoder.py │ │ ├── Tree.py │ │ ├── TreeGRU.py │ │ └── __init__.py │ ├── __init__.py │ ├── gcn_model │ │ ├── __init__.py │ │ ├── gcn.py │ │ ├── tree.py │ │ └── various_gcn.py │ ├── pytorch │ │ ├── HBiLSTM.py │ │ ├── HighWayLSTM.py │ │ ├── __init__.py │ │ ├── implicit_syntactic_representations.py │ │ ├── layer.py │ │ ├── model.py │ │ ├── pre_trained_language_model.py │ │ ├── tagger.py │ │ └── util.py │ └── shared │ │ ├── __init__.py │ │ ├── configuration.py │ │ ├── conll_utils.py │ │ ├── constants.py │ │ ├── constituent_extraction.py │ │ ├── constituent_reader.py │ │ ├── dictionary.py │ │ ├── evaluation.py │ │ ├── features.py │ │ ├── inference.py │ │ ├── inference_utils.py │ │ ├── io_utils.py │ │ ├── measurements.py │ │ ├── numpy_utils.py │ │ ├── reader.py │ │ ├── scores_pb2.py │ │ ├── srl_eval_utils.py │ │ ├── syntactic_extraction.py │ │ ├── tagger_data.py │ │ └── tensor_pb2.py ├── predict.py └── train.py └── orl-4.1 ├── __init__.py ├── analyze.py ├── neural_srl ├── TreeLSTM │ ├── Encoder.py │ ├── Tree.py │ ├── TreeGRU.py │ └── __init__.py ├── __init__.py ├── __pycache__ │ └── __init__.cpython-37.pyc ├── gcn_model │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── tree.cpython-37.pyc │ │ └── various_gcn.cpython-37.pyc │ ├── gcn.py │ ├── tree.py │ └── various_gcn.py ├── pytorch │ ├── HBiLSTM.py │ ├── HighWayLSTM.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── HighWayLSTM.cpython-37.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── implicit_syntactic_representations.cpython-37.pyc │ │ ├── layer.cpython-37.pyc │ │ ├── model.cpython-37.pyc │ │ ├── pre_trained_language_model.cpython-37.pyc │ │ ├── tagger.cpython-37.pyc │ │ └── util.cpython-37.pyc │ ├── implicit_syntactic_representations.py │ ├── layer.py │ ├── model.py │ ├── pre_trained_language_model.py │ ├── tagger.py │ └── util.py └── shared │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── configuration.cpython-37.pyc │ ├── conll_utils.cpython-37.pyc │ ├── constants.cpython-37.pyc │ ├── constituent_extraction.cpython-37.pyc │ ├── constituent_reader.cpython-37.pyc │ ├── dictionary.cpython-37.pyc │ ├── evaluation.cpython-37.pyc │ ├── inference_utils.cpython-37.pyc │ ├── measurements.cpython-37.pyc │ ├── reader.cpython-37.pyc │ ├── srl_eval_utils.cpython-37.pyc │ ├── syntactic_extraction.cpython-37.pyc │ └── tagger_data.cpython-37.pyc │ ├── configuration.py │ ├── conll_utils.py │ ├── constants.py │ ├── constituent_extraction.py │ ├── constituent_reader.py │ ├── dictionary.py │ ├── evaluation.py │ ├── features.py │ ├── inference.py │ ├── inference_utils.py │ ├── io_utils.py │ ├── measurements.py │ ├── numpy_utils.py │ ├── reader.py │ ├── scores_pb2.py │ ├── srl_eval_utils.py │ ├── syntactic_extraction.py │ ├── tagger_data.py │ └── tensor_pb2.py ├── predict.py └── train.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/README.md -------------------------------------------------------------------------------- /exp-4.1-baseline/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/config.json -------------------------------------------------------------------------------- /exp-4.1-baseline/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/log.txt -------------------------------------------------------------------------------- /exp-4.1-baseline/model/char_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/model/char_dict -------------------------------------------------------------------------------- /exp-4.1-baseline/model/checkpoints.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/model/checkpoints.tsv -------------------------------------------------------------------------------- /exp-4.1-baseline/model/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/model/config -------------------------------------------------------------------------------- /exp-4.1-baseline/model/cons_label_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/model/cons_label_dict -------------------------------------------------------------------------------- /exp-4.1-baseline/model/dep_label_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/model/dep_label_dict -------------------------------------------------------------------------------- /exp-4.1-baseline/model/label_dict: -------------------------------------------------------------------------------- 1 | O 2 | AGENT 3 | TARGET 4 | -------------------------------------------------------------------------------- /exp-4.1-baseline/model/pos_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/model/pos_dict -------------------------------------------------------------------------------- /exp-4.1-baseline/model/word_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/model/word_dict -------------------------------------------------------------------------------- /exp-4.1-baseline/predict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/predict.sh -------------------------------------------------------------------------------- /exp-4.1-baseline/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/exp-4.1-baseline/train.sh -------------------------------------------------------------------------------- /figures/model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/figures/model.jpg -------------------------------------------------------------------------------- /figures/model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/figures/model.pdf -------------------------------------------------------------------------------- /scripts/convert_orl_conll_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/scripts/convert_orl_conll_to_json.py -------------------------------------------------------------------------------- /scripts/eval_averaged_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/scripts/eval_averaged_metrics.py -------------------------------------------------------------------------------- /scripts/eval_orl_conll_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/scripts/eval_orl_conll_file.py -------------------------------------------------------------------------------- /scripts/eval_orl_e2e_json_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/scripts/eval_orl_e2e_json_file.py -------------------------------------------------------------------------------- /scripts/eval_orl_json_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/scripts/eval_orl_json_file.py -------------------------------------------------------------------------------- /scripts/generate_constituent_trees_from_benepar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/scripts/generate_constituent_trees_from_benepar.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["neural_srl"] -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/analyze.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/TreeLSTM/Encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/TreeLSTM/Encoder.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/TreeLSTM/Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/TreeLSTM/Tree.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/TreeLSTM/TreeGRU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/TreeLSTM/TreeGRU.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/TreeLSTM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/TreeLSTM/__init__.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/gcn_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/gcn_model/gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/gcn_model/gcn.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/gcn_model/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/gcn_model/tree.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/gcn_model/various_gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/gcn_model/various_gcn.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/HBiLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/HBiLSTM.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/HighWayLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/HighWayLSTM.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/implicit_syntactic_representations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/implicit_syntactic_representations.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/layer.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/model.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/pre_trained_language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/pre_trained_language_model.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/tagger.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/pytorch/util.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/configuration.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/conll_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/conll_utils.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/constants.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/constituent_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/constituent_extraction.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/constituent_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/constituent_reader.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/dictionary.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/evaluation.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/features.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/inference.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/inference_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/inference_utils.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/io_utils.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/measurements.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/numpy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/numpy_utils.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/reader.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/scores_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/scores_pb2.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/srl_eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/srl_eval_utils.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/syntactic_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/syntactic_extraction.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/tagger_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/tagger_data.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/tensor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/neural_srl/shared/tensor_pb2.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/predict.py -------------------------------------------------------------------------------- /src/orl-4.1-ultimate-hard-e2e/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1-ultimate-hard-e2e/train.py -------------------------------------------------------------------------------- /src/orl-4.1/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["neural_srl"] -------------------------------------------------------------------------------- /src/orl-4.1/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/analyze.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/TreeLSTM/Encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/TreeLSTM/Encoder.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/TreeLSTM/Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/TreeLSTM/Tree.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/TreeLSTM/TreeGRU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/TreeLSTM/TreeGRU.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/TreeLSTM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/TreeLSTM/__init__.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/gcn_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/gcn_model/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/gcn_model/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/gcn_model/__pycache__/tree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/gcn_model/__pycache__/tree.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/gcn_model/__pycache__/various_gcn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/gcn_model/__pycache__/various_gcn.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/gcn_model/gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/gcn_model/gcn.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/gcn_model/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/gcn_model/tree.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/gcn_model/various_gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/gcn_model/various_gcn.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/HBiLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/HBiLSTM.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/HighWayLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/HighWayLSTM.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__pycache__/HighWayLSTM.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/__pycache__/HighWayLSTM.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__pycache__/implicit_syntactic_representations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/__pycache__/implicit_syntactic_representations.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__pycache__/layer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/__pycache__/layer.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__pycache__/pre_trained_language_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/__pycache__/pre_trained_language_model.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__pycache__/tagger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/__pycache__/tagger.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/implicit_syntactic_representations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/implicit_syntactic_representations.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/layer.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/model.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/pre_trained_language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/pre_trained_language_model.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/tagger.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/pytorch/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/pytorch/util.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/configuration.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/configuration.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/conll_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/conll_utils.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/constants.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/constituent_extraction.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/constituent_extraction.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/constituent_reader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/constituent_reader.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/dictionary.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/dictionary.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/evaluation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/evaluation.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/inference_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/inference_utils.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/measurements.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/measurements.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/reader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/reader.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/srl_eval_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/srl_eval_utils.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/syntactic_extraction.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/syntactic_extraction.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/__pycache__/tagger_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/__pycache__/tagger_data.cpython-37.pyc -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/configuration.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/conll_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/conll_utils.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/constants.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/constituent_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/constituent_extraction.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/constituent_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/constituent_reader.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/dictionary.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/evaluation.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/features.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/inference.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/inference_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/inference_utils.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/io_utils.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/measurements.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/numpy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/numpy_utils.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/reader.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/scores_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/scores_pb2.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/srl_eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/srl_eval_utils.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/syntactic_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/syntactic_extraction.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/tagger_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/tagger_data.py -------------------------------------------------------------------------------- /src/orl-4.1/neural_srl/shared/tensor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/neural_srl/shared/tensor_pb2.py -------------------------------------------------------------------------------- /src/orl-4.1/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/predict.py -------------------------------------------------------------------------------- /src/orl-4.1/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiroSummer/opinion_mining_with_syn_cons/HEAD/src/orl-4.1/train.py --------------------------------------------------------------------------------