├── .gitignore ├── README.md ├── data └── README.md ├── docs ├── assignment.pdf ├── report-src │ ├── GCN_model.png │ ├── bilstm.png │ ├── bilstm_2.png │ ├── dep_tree.png │ ├── gcn.png │ ├── logo.png │ ├── mybib.bib │ ├── report.aux │ ├── report.bbl │ ├── report.blg │ ├── report.log │ ├── report.out │ ├── report.pdf │ ├── report.synctex.gz │ ├── report.tex │ └── srl.png └── report.pdf ├── models └── README.md ├── requirements.txt └── src ├── __init__.py ├── preprocessing.py ├── run.py ├── srl_models ├── __init__.py ├── gcn.py ├── model.py └── simple.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | # READ ME 2 | Place training and development data here! -------------------------------------------------------------------------------- /docs/assignment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/assignment.pdf -------------------------------------------------------------------------------- /docs/report-src/GCN_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/GCN_model.png -------------------------------------------------------------------------------- /docs/report-src/bilstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/bilstm.png -------------------------------------------------------------------------------- /docs/report-src/bilstm_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/bilstm_2.png -------------------------------------------------------------------------------- /docs/report-src/dep_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/dep_tree.png -------------------------------------------------------------------------------- /docs/report-src/gcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/gcn.png -------------------------------------------------------------------------------- /docs/report-src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/logo.png -------------------------------------------------------------------------------- /docs/report-src/mybib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/mybib.bib -------------------------------------------------------------------------------- /docs/report-src/report.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/report.aux -------------------------------------------------------------------------------- /docs/report-src/report.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/report.bbl -------------------------------------------------------------------------------- /docs/report-src/report.blg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/report.blg -------------------------------------------------------------------------------- /docs/report-src/report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/report.log -------------------------------------------------------------------------------- /docs/report-src/report.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/report.out -------------------------------------------------------------------------------- /docs/report-src/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/report.pdf -------------------------------------------------------------------------------- /docs/report-src/report.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/report.synctex.gz -------------------------------------------------------------------------------- /docs/report-src/report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/report.tex -------------------------------------------------------------------------------- /docs/report-src/srl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report-src/srl.png -------------------------------------------------------------------------------- /docs/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/docs/report.pdf -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- 1 | # READ ME 2 | Place pre-trained models here! -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/src/preprocessing.py -------------------------------------------------------------------------------- /src/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/src/run.py -------------------------------------------------------------------------------- /src/srl_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/src/srl_models/__init__.py -------------------------------------------------------------------------------- /src/srl_models/gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/src/srl_models/gcn.py -------------------------------------------------------------------------------- /src/srl_models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/src/srl_models/model.py -------------------------------------------------------------------------------- /src/srl_models/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/src/srl_models/simple.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giorgio-mariani/Semantic-Role-Labeling/HEAD/src/utils.py --------------------------------------------------------------------------------