├── LICENSE ├── README.md ├── code ├── MEL-Win-CS-ConvertDOCMtoDOCX │ ├── .vs │ │ └── ConvertDOCMtoDOCX │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ └── v16 │ │ │ ├── .suo │ │ │ ├── Server │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ └── storage.ide │ │ │ └── TestStore │ │ │ └── 0 │ │ │ ├── 000-0000.testlog │ │ │ └── testlog.manifest │ ├── ConvertDOCMtoDOCX.csproj │ ├── ConvertDOCMtoDOCX.sln │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.0 │ │ │ ├── AGRIF_Project.deps.json │ │ │ ├── AGRIF_Project.dll │ │ │ ├── AGRIF_Project.exe │ │ │ ├── AGRIF_Project.pdb │ │ │ ├── AGRIF_Project.runtimeconfig.dev.json │ │ │ ├── AGRIF_Project.runtimeconfig.json │ │ │ ├── DocumentFormat.OpenXml.dll │ │ │ ├── DocumentFormat.OpenXml.xml │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── System.IO.Packaging.dll │ └── obj │ │ ├── ConvertDOCMtoDOCX.csproj.nuget.cache │ │ ├── ConvertDOCMtoDOCX.csproj.nuget.dgspec.json │ │ ├── ConvertDOCMtoDOCX.csproj.nuget.g.props │ │ ├── ConvertDOCMtoDOCX.csproj.nuget.g.targets │ │ ├── Debug │ │ └── netcoreapp3.0 │ │ │ ├── AGRIF_Project.dll │ │ │ ├── AGRIF_Project.exe │ │ │ ├── AGRIF_Project.pdb │ │ │ ├── ConvertDOCMtoDOCX.AssemblyInfo.cs │ │ │ ├── ConvertDOCMtoDOCX.AssemblyInfoInputs.cache │ │ │ ├── ConvertDOCMtoDOCX.assets.cache │ │ │ ├── ConvertDOCMtoDOCX.csproj.CopyComplete │ │ │ ├── ConvertDOCMtoDOCX.csproj.FileListAbsolute.txt │ │ │ ├── ConvertDOCMtoDOCX.csprojAssemblyReference.cache │ │ │ └── ConvertDOCMtoDOCX.exe │ │ └── project.assets.json ├── MEL │ ├── DoEE_Species.py │ ├── __init__.py │ ├── config-Example01.json │ ├── config-NER-Sampling.json │ └── config.json ├── NLP_NER │ ├── EntityRecognition.py │ ├── NLP-NER-config.json │ ├── Sampling.py │ ├── __init__.py │ ├── bert.py │ ├── requirements.txt │ └── sampling-config.json ├── NLP_NER_API │ ├── README.md │ ├── analysis │ │ ├── aggregation.py │ │ ├── coref_coreNLP.py │ │ ├── filter_summary.py │ │ ├── spacy_PT_DP_task.py │ │ └── stanza_PT_DP_task.py │ ├── app_runner.py │ ├── config.json │ ├── interface │ │ ├── fileinfo.py │ │ ├── json_function.py │ │ └── path_function.py │ ├── pagination.py │ ├── read_file.py │ ├── requirements.txt │ ├── server_runner.py │ ├── static │ │ ├── favicon │ │ ├── home.png │ │ ├── pathpage.css │ │ └── style.css │ └── templates │ │ ├── base.html │ │ └── pathpages.html ├── _run_MEL.py ├── _run_MEL_with_Example01.py ├── _run_MEL_with_NER_Sampling.py ├── _run_WSGI_NLP_NER_API.py ├── requirements-list-python3.7.4-deeppavlov.txt └── requirements-list-python3.8.3.txt ├── demo └── README.md ├── desktop.ini ├── docs ├── MEL+TNNT - Usage Instructions.txt ├── MEL+TNNT.png ├── MEL │ ├── MEL-ProcessingModel.png │ ├── MEL-UML.jpg │ └── MEL-UML.png └── TNNT │ ├── TNNT-Architecture.png │ ├── TNNT-CategoryClassification-ModelsPerspective.png │ ├── TNNT-FlowChart.png │ ├── TNNT-ProcessingModel.png │ ├── TNNT-RESTful-API-Architecture.png │ └── TNNT-UML.png └── examples ├── BTC.txt-MEL+NER_output_3.7_deeppavlov.json ├── BTC.txt-MEL+NER_output_3.8_all.json └── re3d.txt-MEL+NER_output_3.7_deeppavlov.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/README.md -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/.suo -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/TestStore/0/000-0000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/TestStore/0/000-0000.testlog -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/.vs/ConvertDOCMtoDOCX/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/ConvertDOCMtoDOCX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/ConvertDOCMtoDOCX.csproj -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/ConvertDOCMtoDOCX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/ConvertDOCMtoDOCX.sln -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/Program.cs -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/Properties/launchSettings.json -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.deps.json -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.dll -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.exe -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.pdb -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.runtimeconfig.dev.json -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/AGRIF_Project.runtimeconfig.json -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/DocumentFormat.OpenXml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/DocumentFormat.OpenXml.dll -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/DocumentFormat.OpenXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/DocumentFormat.OpenXml.xml -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/System.IO.Packaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/bin/Debug/netcoreapp3.0/System.IO.Packaging.dll -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/ConvertDOCMtoDOCX.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/ConvertDOCMtoDOCX.csproj.nuget.cache -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/ConvertDOCMtoDOCX.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/ConvertDOCMtoDOCX.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/ConvertDOCMtoDOCX.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/ConvertDOCMtoDOCX.csproj.nuget.g.props -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/ConvertDOCMtoDOCX.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/ConvertDOCMtoDOCX.csproj.nuget.g.targets -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/AGRIF_Project.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/AGRIF_Project.dll -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/AGRIF_Project.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/AGRIF_Project.exe -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/AGRIF_Project.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/AGRIF_Project.pdb -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.AssemblyInfo.cs -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9b4045bb1648435c027178a18de74b54129f460a 2 | -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.assets.cache -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/Debug/netcoreapp3.0/ConvertDOCMtoDOCX.exe -------------------------------------------------------------------------------- /code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL-Win-CS-ConvertDOCMtoDOCX/obj/project.assets.json -------------------------------------------------------------------------------- /code/MEL/DoEE_Species.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL/DoEE_Species.py -------------------------------------------------------------------------------- /code/MEL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL/__init__.py -------------------------------------------------------------------------------- /code/MEL/config-Example01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL/config-Example01.json -------------------------------------------------------------------------------- /code/MEL/config-NER-Sampling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL/config-NER-Sampling.json -------------------------------------------------------------------------------- /code/MEL/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/MEL/config.json -------------------------------------------------------------------------------- /code/NLP_NER/EntityRecognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER/EntityRecognition.py -------------------------------------------------------------------------------- /code/NLP_NER/NLP-NER-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER/NLP-NER-config.json -------------------------------------------------------------------------------- /code/NLP_NER/Sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER/Sampling.py -------------------------------------------------------------------------------- /code/NLP_NER/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER/__init__.py -------------------------------------------------------------------------------- /code/NLP_NER/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER/bert.py -------------------------------------------------------------------------------- /code/NLP_NER/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER/requirements.txt -------------------------------------------------------------------------------- /code/NLP_NER/sampling-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER/sampling-config.json -------------------------------------------------------------------------------- /code/NLP_NER_API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/README.md -------------------------------------------------------------------------------- /code/NLP_NER_API/analysis/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/analysis/aggregation.py -------------------------------------------------------------------------------- /code/NLP_NER_API/analysis/coref_coreNLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/analysis/coref_coreNLP.py -------------------------------------------------------------------------------- /code/NLP_NER_API/analysis/filter_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/analysis/filter_summary.py -------------------------------------------------------------------------------- /code/NLP_NER_API/analysis/spacy_PT_DP_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/analysis/spacy_PT_DP_task.py -------------------------------------------------------------------------------- /code/NLP_NER_API/analysis/stanza_PT_DP_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/analysis/stanza_PT_DP_task.py -------------------------------------------------------------------------------- /code/NLP_NER_API/app_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/app_runner.py -------------------------------------------------------------------------------- /code/NLP_NER_API/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/config.json -------------------------------------------------------------------------------- /code/NLP_NER_API/interface/fileinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/interface/fileinfo.py -------------------------------------------------------------------------------- /code/NLP_NER_API/interface/json_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/interface/json_function.py -------------------------------------------------------------------------------- /code/NLP_NER_API/interface/path_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/interface/path_function.py -------------------------------------------------------------------------------- /code/NLP_NER_API/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/pagination.py -------------------------------------------------------------------------------- /code/NLP_NER_API/read_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/read_file.py -------------------------------------------------------------------------------- /code/NLP_NER_API/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/requirements.txt -------------------------------------------------------------------------------- /code/NLP_NER_API/server_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/server_runner.py -------------------------------------------------------------------------------- /code/NLP_NER_API/static/favicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/static/favicon -------------------------------------------------------------------------------- /code/NLP_NER_API/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/static/home.png -------------------------------------------------------------------------------- /code/NLP_NER_API/static/pathpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/static/pathpage.css -------------------------------------------------------------------------------- /code/NLP_NER_API/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/static/style.css -------------------------------------------------------------------------------- /code/NLP_NER_API/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/templates/base.html -------------------------------------------------------------------------------- /code/NLP_NER_API/templates/pathpages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/NLP_NER_API/templates/pathpages.html -------------------------------------------------------------------------------- /code/_run_MEL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/_run_MEL.py -------------------------------------------------------------------------------- /code/_run_MEL_with_Example01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/_run_MEL_with_Example01.py -------------------------------------------------------------------------------- /code/_run_MEL_with_NER_Sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/_run_MEL_with_NER_Sampling.py -------------------------------------------------------------------------------- /code/_run_WSGI_NLP_NER_API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/_run_WSGI_NLP_NER_API.py -------------------------------------------------------------------------------- /code/requirements-list-python3.7.4-deeppavlov.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/requirements-list-python3.7.4-deeppavlov.txt -------------------------------------------------------------------------------- /code/requirements-list-python3.8.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/code/requirements-list-python3.8.3.txt -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/demo/README.md -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | [ViewState] 2 | Mode= 3 | Vid= 4 | FolderType=Generic 5 | -------------------------------------------------------------------------------- /docs/MEL+TNNT - Usage Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/MEL+TNNT - Usage Instructions.txt -------------------------------------------------------------------------------- /docs/MEL+TNNT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/MEL+TNNT.png -------------------------------------------------------------------------------- /docs/MEL/MEL-ProcessingModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/MEL/MEL-ProcessingModel.png -------------------------------------------------------------------------------- /docs/MEL/MEL-UML.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/MEL/MEL-UML.jpg -------------------------------------------------------------------------------- /docs/MEL/MEL-UML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/MEL/MEL-UML.png -------------------------------------------------------------------------------- /docs/TNNT/TNNT-Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/TNNT/TNNT-Architecture.png -------------------------------------------------------------------------------- /docs/TNNT/TNNT-CategoryClassification-ModelsPerspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/TNNT/TNNT-CategoryClassification-ModelsPerspective.png -------------------------------------------------------------------------------- /docs/TNNT/TNNT-FlowChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/TNNT/TNNT-FlowChart.png -------------------------------------------------------------------------------- /docs/TNNT/TNNT-ProcessingModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/TNNT/TNNT-ProcessingModel.png -------------------------------------------------------------------------------- /docs/TNNT/TNNT-RESTful-API-Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/TNNT/TNNT-RESTful-API-Architecture.png -------------------------------------------------------------------------------- /docs/TNNT/TNNT-UML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/docs/TNNT/TNNT-UML.png -------------------------------------------------------------------------------- /examples/BTC.txt-MEL+NER_output_3.7_deeppavlov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/examples/BTC.txt-MEL+NER_output_3.7_deeppavlov.json -------------------------------------------------------------------------------- /examples/BTC.txt-MEL+NER_output_3.8_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/examples/BTC.txt-MEL+NER_output_3.8_all.json -------------------------------------------------------------------------------- /examples/re3d.txt-MEL+NER_output_3.7_deeppavlov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGCP/MEL-TNNT/HEAD/examples/re3d.txt-MEL+NER_output_3.7_deeppavlov.json --------------------------------------------------------------------------------