├── .gitignore ├── LICENSE ├── README.md ├── backend ├── BiLSTM.py ├── Dockerfile ├── Model.py ├── ModelNewES.py ├── ModelNewWD.py ├── README.md ├── backend.py ├── models │ └── README.md └── requirements.txt ├── batch_processing ├── Model.py ├── README.md ├── index.py ├── label_mp.py ├── label_spark.py ├── requirements.txt └── util │ ├── Document.py │ ├── Sentence.py │ ├── Word.py │ └── data.py ├── data ├── README.md ├── ch.txt ├── es.txt ├── nr.txt ├── re.txt └── wd.txt ├── docker-compose.yml └── frontend ├── Dockerfile ├── README.md ├── config.ini ├── frontend.py ├── requirements.txt ├── static ├── css │ ├── ion.rangeSlider.css │ └── targer.css └── js │ ├── displacy-ent.js │ ├── ion.rangeSlider.js │ ├── jquery-3.3.1.min.js │ └── targer.js ├── templates └── template_main.html ├── uwsgi.ini └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/README.md -------------------------------------------------------------------------------- /backend/BiLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/backend/BiLSTM.py -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/backend/Model.py -------------------------------------------------------------------------------- /backend/ModelNewES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/backend/ModelNewES.py -------------------------------------------------------------------------------- /backend/ModelNewWD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/backend/ModelNewWD.py -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/backend/backend.py -------------------------------------------------------------------------------- /backend/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/backend/models/README.md -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /batch_processing/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/Model.py -------------------------------------------------------------------------------- /batch_processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/README.md -------------------------------------------------------------------------------- /batch_processing/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/index.py -------------------------------------------------------------------------------- /batch_processing/label_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/label_mp.py -------------------------------------------------------------------------------- /batch_processing/label_spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/label_spark.py -------------------------------------------------------------------------------- /batch_processing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/requirements.txt -------------------------------------------------------------------------------- /batch_processing/util/Document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/util/Document.py -------------------------------------------------------------------------------- /batch_processing/util/Sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/util/Sentence.py -------------------------------------------------------------------------------- /batch_processing/util/Word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/util/Word.py -------------------------------------------------------------------------------- /batch_processing/util/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/batch_processing/util/data.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/data/README.md -------------------------------------------------------------------------------- /data/ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/data/ch.txt -------------------------------------------------------------------------------- /data/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/data/es.txt -------------------------------------------------------------------------------- /data/nr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/data/nr.txt -------------------------------------------------------------------------------- /data/re.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/data/re.txt -------------------------------------------------------------------------------- /data/wd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/data/wd.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/config.ini -------------------------------------------------------------------------------- /frontend/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/frontend.py -------------------------------------------------------------------------------- /frontend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/requirements.txt -------------------------------------------------------------------------------- /frontend/static/css/ion.rangeSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/static/css/ion.rangeSlider.css -------------------------------------------------------------------------------- /frontend/static/css/targer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/static/css/targer.css -------------------------------------------------------------------------------- /frontend/static/js/displacy-ent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/static/js/displacy-ent.js -------------------------------------------------------------------------------- /frontend/static/js/ion.rangeSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/static/js/ion.rangeSlider.js -------------------------------------------------------------------------------- /frontend/static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /frontend/static/js/targer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/static/js/targer.js -------------------------------------------------------------------------------- /frontend/templates/template_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/templates/template_main.html -------------------------------------------------------------------------------- /frontend/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/uwsgi.ini -------------------------------------------------------------------------------- /frontend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhh-lt/targer/HEAD/frontend/wsgi.py --------------------------------------------------------------------------------