├── .gitignore ├── README.md ├── code ├── entity_extraction │ ├── __init__.py │ ├── entity_extractor.py │ ├── main.py │ └── visualizer.py ├── main_functions.py ├── pronoun.py ├── relation_extraction │ ├── RE_init.py │ ├── __init__.py │ ├── __init__.pyc │ ├── main_functions.py │ ├── pronoun.py │ ├── pronoun_resolution_functions.py │ ├── relEx_parse_tree_bridgegate_with_dates_setting.py │ ├── relEx_parse_tree_dental_setting.py │ └── utility_functions.py └── utility_functions.py ├── entity_extraction ├── entity_extractor.py ├── main.py └── visualizer.py ├── flowchart.png ├── graph_extraction └── graph_extractor.py ├── relation_extraction ├── RE_init.py ├── main_functions.py ├── relEx_parse_tree_bridgegate_with_dates_setting.py └── utility_functions.py ├── requirements_python2.txt ├── requirements_python3.txt └── supernodes_extraction └── contextual_group_extractor.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/README.md -------------------------------------------------------------------------------- /code/entity_extraction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/entity_extraction/entity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/entity_extraction/entity_extractor.py -------------------------------------------------------------------------------- /code/entity_extraction/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/entity_extraction/main.py -------------------------------------------------------------------------------- /code/entity_extraction/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/entity_extraction/visualizer.py -------------------------------------------------------------------------------- /code/main_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/main_functions.py -------------------------------------------------------------------------------- /code/pronoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/pronoun.py -------------------------------------------------------------------------------- /code/relation_extraction/RE_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/relation_extraction/RE_init.py -------------------------------------------------------------------------------- /code/relation_extraction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/relation_extraction/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/relation_extraction/__init__.pyc -------------------------------------------------------------------------------- /code/relation_extraction/main_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/relation_extraction/main_functions.py -------------------------------------------------------------------------------- /code/relation_extraction/pronoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/relation_extraction/pronoun.py -------------------------------------------------------------------------------- /code/relation_extraction/pronoun_resolution_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/relation_extraction/pronoun_resolution_functions.py -------------------------------------------------------------------------------- /code/relation_extraction/relEx_parse_tree_bridgegate_with_dates_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/relation_extraction/relEx_parse_tree_bridgegate_with_dates_setting.py -------------------------------------------------------------------------------- /code/relation_extraction/relEx_parse_tree_dental_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/relation_extraction/relEx_parse_tree_dental_setting.py -------------------------------------------------------------------------------- /code/relation_extraction/utility_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/relation_extraction/utility_functions.py -------------------------------------------------------------------------------- /code/utility_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/code/utility_functions.py -------------------------------------------------------------------------------- /entity_extraction/entity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/entity_extraction/entity_extractor.py -------------------------------------------------------------------------------- /entity_extraction/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/entity_extraction/main.py -------------------------------------------------------------------------------- /entity_extraction/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/entity_extraction/visualizer.py -------------------------------------------------------------------------------- /flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/flowchart.png -------------------------------------------------------------------------------- /graph_extraction/graph_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/graph_extraction/graph_extractor.py -------------------------------------------------------------------------------- /relation_extraction/RE_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/relation_extraction/RE_init.py -------------------------------------------------------------------------------- /relation_extraction/main_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/relation_extraction/main_functions.py -------------------------------------------------------------------------------- /relation_extraction/relEx_parse_tree_bridgegate_with_dates_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/relation_extraction/relEx_parse_tree_bridgegate_with_dates_setting.py -------------------------------------------------------------------------------- /relation_extraction/utility_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/relation_extraction/utility_functions.py -------------------------------------------------------------------------------- /requirements_python2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/requirements_python2.txt -------------------------------------------------------------------------------- /requirements_python3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/requirements_python3.txt -------------------------------------------------------------------------------- /supernodes_extraction/contextual_group_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roychowdhury-group/FENESTRA-Fake-News-Structure-and-Threat-Assessment/HEAD/supernodes_extraction/contextual_group_extractor.py --------------------------------------------------------------------------------