├── LICENSE ├── README.md ├── TopoCluster.py ├── data ├── globalgrid_5_clip.txt.tar.gz ├── wiki_sample.txt.tar.gz └── wotr-topo-train-106-170.xml ├── download_gazets.sh ├── experimental ├── ConvertJson.py ├── ConvertLGLxml.py ├── CreateCivilWarDocs.py ├── CreateLGLTrainDocs.py ├── CreateLGL_DevTestSets.py ├── CreateTestTable.py ├── CreateTestTable_LGL.py ├── FixWikiDictionaries.py ├── LearnLambdas.py ├── LearnThetas.py ├── LocalSpatialStatsV2.py ├── PseudoDocCreator.py ├── SplitCwar.py ├── SuperDocument.py ├── TestResolverV2.py ├── TestResolverV3_NER.py ├── TestResolverV4_NER.py ├── TestResolverV6.py ├── TestResolverV6_Pop.py ├── TestResolverVCWar_NER.py ├── TestResolver_CWar.py ├── TestResolver_CWar_allits.py ├── TestResolver_LGL.py ├── TestResolver_LGL_allits.py ├── TestResolver_LGL_allits_Thetas.py ├── TestResolver_TRCONLL.py ├── TrainMultinomialLog.py ├── Train_ThetaWeights.py ├── Train_ThetaWeights_AllGids.py ├── Train_ThetaWeights_GenerateFeatures.py ├── avgresults.py ├── fix_parse.py └── parser.py ├── scripts ├── JacSimilarity.py ├── KernelFunctionsV1.py ├── LoadDBV1.py ├── LocalSpatialStatsV1.py ├── MoransV1.py ├── NERTest.py ├── TestResolver_PlainText_NER.py ├── TestResolver_xml.py ├── TestResolver_xml_ner.py ├── UnicodeBlocks.py └── Visualize_Simple.py └── stanford-ner-2014-06-16 ├── LICENSE.txt ├── NERDemo.java ├── README.txt ├── build.xml ├── classifiers ├── english.all.3class.distsim.crf.ser.gz ├── english.all.3class.distsim.prop ├── english.conll.4class.distsim.crf.ser.gz ├── english.conll.4class.distsim.prop ├── english.muc.7class.distsim.crf.ser.gz ├── english.muc.7class.distsim.prop ├── english.nowiki.3class.distsim.crf.ser.gz └── english.nowiki.3class.distsim.prop ├── ner-gui.bat ├── ner-gui.command ├── ner-gui.sh ├── ner.bat ├── ner.sh ├── output.xml ├── sample.ner.txt ├── sample.txt ├── stanford-ner-3.4-javadoc.jar ├── stanford-ner-3.4-sources.jar ├── stanford-ner-3.4.jar ├── stanford-ner.jar └── tempplain.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/README.md -------------------------------------------------------------------------------- /TopoCluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/TopoCluster.py -------------------------------------------------------------------------------- /data/globalgrid_5_clip.txt.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/data/globalgrid_5_clip.txt.tar.gz -------------------------------------------------------------------------------- /data/wiki_sample.txt.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/data/wiki_sample.txt.tar.gz -------------------------------------------------------------------------------- /data/wotr-topo-train-106-170.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/data/wotr-topo-train-106-170.xml -------------------------------------------------------------------------------- /download_gazets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/download_gazets.sh -------------------------------------------------------------------------------- /experimental/ConvertJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/ConvertJson.py -------------------------------------------------------------------------------- /experimental/ConvertLGLxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/ConvertLGLxml.py -------------------------------------------------------------------------------- /experimental/CreateCivilWarDocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/CreateCivilWarDocs.py -------------------------------------------------------------------------------- /experimental/CreateLGLTrainDocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/CreateLGLTrainDocs.py -------------------------------------------------------------------------------- /experimental/CreateLGL_DevTestSets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/CreateLGL_DevTestSets.py -------------------------------------------------------------------------------- /experimental/CreateTestTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/CreateTestTable.py -------------------------------------------------------------------------------- /experimental/CreateTestTable_LGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/CreateTestTable_LGL.py -------------------------------------------------------------------------------- /experimental/FixWikiDictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/FixWikiDictionaries.py -------------------------------------------------------------------------------- /experimental/LearnLambdas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/LearnLambdas.py -------------------------------------------------------------------------------- /experimental/LearnThetas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/LearnThetas.py -------------------------------------------------------------------------------- /experimental/LocalSpatialStatsV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/LocalSpatialStatsV2.py -------------------------------------------------------------------------------- /experimental/PseudoDocCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/PseudoDocCreator.py -------------------------------------------------------------------------------- /experimental/SplitCwar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/SplitCwar.py -------------------------------------------------------------------------------- /experimental/SuperDocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/SuperDocument.py -------------------------------------------------------------------------------- /experimental/TestResolverV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolverV2.py -------------------------------------------------------------------------------- /experimental/TestResolverV3_NER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolverV3_NER.py -------------------------------------------------------------------------------- /experimental/TestResolverV4_NER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolverV4_NER.py -------------------------------------------------------------------------------- /experimental/TestResolverV6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolverV6.py -------------------------------------------------------------------------------- /experimental/TestResolverV6_Pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolverV6_Pop.py -------------------------------------------------------------------------------- /experimental/TestResolverVCWar_NER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolverVCWar_NER.py -------------------------------------------------------------------------------- /experimental/TestResolver_CWar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolver_CWar.py -------------------------------------------------------------------------------- /experimental/TestResolver_CWar_allits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolver_CWar_allits.py -------------------------------------------------------------------------------- /experimental/TestResolver_LGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolver_LGL.py -------------------------------------------------------------------------------- /experimental/TestResolver_LGL_allits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolver_LGL_allits.py -------------------------------------------------------------------------------- /experimental/TestResolver_LGL_allits_Thetas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolver_LGL_allits_Thetas.py -------------------------------------------------------------------------------- /experimental/TestResolver_TRCONLL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TestResolver_TRCONLL.py -------------------------------------------------------------------------------- /experimental/TrainMultinomialLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/TrainMultinomialLog.py -------------------------------------------------------------------------------- /experimental/Train_ThetaWeights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/Train_ThetaWeights.py -------------------------------------------------------------------------------- /experimental/Train_ThetaWeights_AllGids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/Train_ThetaWeights_AllGids.py -------------------------------------------------------------------------------- /experimental/Train_ThetaWeights_GenerateFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/Train_ThetaWeights_GenerateFeatures.py -------------------------------------------------------------------------------- /experimental/avgresults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/avgresults.py -------------------------------------------------------------------------------- /experimental/fix_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/fix_parse.py -------------------------------------------------------------------------------- /experimental/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/experimental/parser.py -------------------------------------------------------------------------------- /scripts/JacSimilarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/JacSimilarity.py -------------------------------------------------------------------------------- /scripts/KernelFunctionsV1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/KernelFunctionsV1.py -------------------------------------------------------------------------------- /scripts/LoadDBV1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/LoadDBV1.py -------------------------------------------------------------------------------- /scripts/LocalSpatialStatsV1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/LocalSpatialStatsV1.py -------------------------------------------------------------------------------- /scripts/MoransV1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/MoransV1.py -------------------------------------------------------------------------------- /scripts/NERTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/NERTest.py -------------------------------------------------------------------------------- /scripts/TestResolver_PlainText_NER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/TestResolver_PlainText_NER.py -------------------------------------------------------------------------------- /scripts/TestResolver_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/TestResolver_xml.py -------------------------------------------------------------------------------- /scripts/TestResolver_xml_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/TestResolver_xml_ner.py -------------------------------------------------------------------------------- /scripts/UnicodeBlocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/UnicodeBlocks.py -------------------------------------------------------------------------------- /scripts/Visualize_Simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/scripts/Visualize_Simple.py -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/LICENSE.txt -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/NERDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/NERDemo.java -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/README.txt -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/build.xml -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/classifiers/english.all.3class.distsim.crf.ser.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/classifiers/english.all.3class.distsim.crf.ser.gz -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/classifiers/english.all.3class.distsim.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/classifiers/english.all.3class.distsim.prop -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/classifiers/english.conll.4class.distsim.crf.ser.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/classifiers/english.conll.4class.distsim.crf.ser.gz -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/classifiers/english.conll.4class.distsim.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/classifiers/english.conll.4class.distsim.prop -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/classifiers/english.muc.7class.distsim.crf.ser.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/classifiers/english.muc.7class.distsim.crf.ser.gz -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/classifiers/english.muc.7class.distsim.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/classifiers/english.muc.7class.distsim.prop -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/classifiers/english.nowiki.3class.distsim.crf.ser.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/classifiers/english.nowiki.3class.distsim.crf.ser.gz -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/classifiers/english.nowiki.3class.distsim.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/classifiers/english.nowiki.3class.distsim.prop -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/ner-gui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/ner-gui.bat -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/ner-gui.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/ner-gui.command -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/ner-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/ner-gui.sh -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/ner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/ner.bat -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/ner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/ner.sh -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/output.xml -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/sample.ner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/sample.ner.txt -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/sample.txt -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/stanford-ner-3.4-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/stanford-ner-3.4-javadoc.jar -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/stanford-ner-3.4-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/stanford-ner-3.4-sources.jar -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/stanford-ner-3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/stanford-ner-3.4.jar -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/stanford-ner.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/stanford-ner.jar -------------------------------------------------------------------------------- /stanford-ner-2014-06-16/tempplain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantdelozier/TopoCluster/HEAD/stanford-ner-2014-06-16/tempplain.txt --------------------------------------------------------------------------------