├── .gitignore ├── COPYING.LESSER.txt ├── COPYING.txt ├── README.md ├── conf ├── semanticizer.memory.yml ├── semanticizer.redis.yml ├── semanticizer.trove.yml ├── semanticizer.uva.yml └── semanticizer.yml ├── doc ├── Makefile ├── Semanticizer.js ├── advanced.js ├── docs │ ├── Semanticizer.html │ ├── advanced.html │ ├── docco.css │ ├── learning.html │ └── public │ │ ├── fonts │ │ ├── aller-bold.eot │ │ ├── aller-bold.ttf │ │ ├── aller-bold.woff │ │ ├── aller-light.eot │ │ ├── aller-light.ttf │ │ ├── aller-light.woff │ │ ├── fleurons.eot │ │ ├── fleurons.ttf │ │ ├── fleurons.woff │ │ ├── novecento-bold.eot │ │ ├── novecento-bold.ttf │ │ └── novecento-bold.woff │ │ ├── images │ │ └── gray.png │ │ └── stylesheets │ │ └── normalize.css └── learning.js ├── semanticizer.svg ├── semanticizer ├── __init__.py ├── config.py ├── dbinsert │ ├── __init__.py │ └── __main__.py ├── processors │ ├── __init__.py │ ├── context.py │ ├── core.py │ ├── external.py │ ├── feature.py │ ├── features.py │ ├── image.py │ ├── learning.py │ ├── multiple.py │ ├── semanticize.py │ ├── semanticizer.py │ ├── stringUtils.py │ └── util.py ├── procpipeline.py ├── server │ ├── __init__.py │ └── __main__.py ├── util │ ├── __init__.py │ ├── online_learning.py │ ├── profiler.py │ ├── store_dataset.py │ └── timer.py └── wpm │ ├── __init__.py │ ├── data.py │ ├── db │ ├── __init__.py │ ├── inmemory.py │ ├── mongodb.py │ └── redisdb.py │ ├── load.py │ ├── namespace.py │ └── utils │ ├── __init__.py │ ├── emphasis_resolver.py │ ├── markup_stripper.py │ └── wikidumps.py ├── semanticizer_wsgi.py ├── setup.py └── test ├── TestConfig.py ├── TestInputdata.py ├── TestMain.py ├── TestProcpipeline.py ├── TestServer.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.LESSER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/COPYING.LESSER.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/README.md -------------------------------------------------------------------------------- /conf/semanticizer.memory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/conf/semanticizer.memory.yml -------------------------------------------------------------------------------- /conf/semanticizer.redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/conf/semanticizer.redis.yml -------------------------------------------------------------------------------- /conf/semanticizer.trove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/conf/semanticizer.trove.yml -------------------------------------------------------------------------------- /conf/semanticizer.uva.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/conf/semanticizer.uva.yml -------------------------------------------------------------------------------- /conf/semanticizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/conf/semanticizer.yml -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/Semanticizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/Semanticizer.js -------------------------------------------------------------------------------- /doc/advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/advanced.js -------------------------------------------------------------------------------- /doc/docs/Semanticizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/Semanticizer.html -------------------------------------------------------------------------------- /doc/docs/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/advanced.html -------------------------------------------------------------------------------- /doc/docs/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/docco.css -------------------------------------------------------------------------------- /doc/docs/learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/learning.html -------------------------------------------------------------------------------- /doc/docs/public/fonts/aller-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/aller-bold.eot -------------------------------------------------------------------------------- /doc/docs/public/fonts/aller-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/aller-bold.ttf -------------------------------------------------------------------------------- /doc/docs/public/fonts/aller-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/aller-bold.woff -------------------------------------------------------------------------------- /doc/docs/public/fonts/aller-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/aller-light.eot -------------------------------------------------------------------------------- /doc/docs/public/fonts/aller-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/aller-light.ttf -------------------------------------------------------------------------------- /doc/docs/public/fonts/aller-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/aller-light.woff -------------------------------------------------------------------------------- /doc/docs/public/fonts/fleurons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/fleurons.eot -------------------------------------------------------------------------------- /doc/docs/public/fonts/fleurons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/fleurons.ttf -------------------------------------------------------------------------------- /doc/docs/public/fonts/fleurons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/fleurons.woff -------------------------------------------------------------------------------- /doc/docs/public/fonts/novecento-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/novecento-bold.eot -------------------------------------------------------------------------------- /doc/docs/public/fonts/novecento-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/novecento-bold.ttf -------------------------------------------------------------------------------- /doc/docs/public/fonts/novecento-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/fonts/novecento-bold.woff -------------------------------------------------------------------------------- /doc/docs/public/images/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/images/gray.png -------------------------------------------------------------------------------- /doc/docs/public/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/docs/public/stylesheets/normalize.css -------------------------------------------------------------------------------- /doc/learning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/doc/learning.js -------------------------------------------------------------------------------- /semanticizer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer.svg -------------------------------------------------------------------------------- /semanticizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /semanticizer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/config.py -------------------------------------------------------------------------------- /semanticizer/dbinsert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /semanticizer/dbinsert/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/dbinsert/__main__.py -------------------------------------------------------------------------------- /semanticizer/processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /semanticizer/processors/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/context.py -------------------------------------------------------------------------------- /semanticizer/processors/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/core.py -------------------------------------------------------------------------------- /semanticizer/processors/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/external.py -------------------------------------------------------------------------------- /semanticizer/processors/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/feature.py -------------------------------------------------------------------------------- /semanticizer/processors/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/features.py -------------------------------------------------------------------------------- /semanticizer/processors/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/image.py -------------------------------------------------------------------------------- /semanticizer/processors/learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/learning.py -------------------------------------------------------------------------------- /semanticizer/processors/multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/multiple.py -------------------------------------------------------------------------------- /semanticizer/processors/semanticize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/semanticize.py -------------------------------------------------------------------------------- /semanticizer/processors/semanticizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/semanticizer.py -------------------------------------------------------------------------------- /semanticizer/processors/stringUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/stringUtils.py -------------------------------------------------------------------------------- /semanticizer/processors/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/processors/util.py -------------------------------------------------------------------------------- /semanticizer/procpipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/procpipeline.py -------------------------------------------------------------------------------- /semanticizer/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/server/__init__.py -------------------------------------------------------------------------------- /semanticizer/server/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/server/__main__.py -------------------------------------------------------------------------------- /semanticizer/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /semanticizer/util/online_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/util/online_learning.py -------------------------------------------------------------------------------- /semanticizer/util/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/util/profiler.py -------------------------------------------------------------------------------- /semanticizer/util/store_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/util/store_dataset.py -------------------------------------------------------------------------------- /semanticizer/util/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/util/timer.py -------------------------------------------------------------------------------- /semanticizer/wpm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /semanticizer/wpm/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/data.py -------------------------------------------------------------------------------- /semanticizer/wpm/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /semanticizer/wpm/db/inmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/db/inmemory.py -------------------------------------------------------------------------------- /semanticizer/wpm/db/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/db/mongodb.py -------------------------------------------------------------------------------- /semanticizer/wpm/db/redisdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/db/redisdb.py -------------------------------------------------------------------------------- /semanticizer/wpm/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/load.py -------------------------------------------------------------------------------- /semanticizer/wpm/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/namespace.py -------------------------------------------------------------------------------- /semanticizer/wpm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/utils/__init__.py -------------------------------------------------------------------------------- /semanticizer/wpm/utils/emphasis_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/utils/emphasis_resolver.py -------------------------------------------------------------------------------- /semanticizer/wpm/utils/markup_stripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/utils/markup_stripper.py -------------------------------------------------------------------------------- /semanticizer/wpm/utils/wikidumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer/wpm/utils/wikidumps.py -------------------------------------------------------------------------------- /semanticizer_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/semanticizer_wsgi.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/setup.py -------------------------------------------------------------------------------- /test/TestConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/test/TestConfig.py -------------------------------------------------------------------------------- /test/TestInputdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/test/TestInputdata.py -------------------------------------------------------------------------------- /test/TestMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/test/TestMain.py -------------------------------------------------------------------------------- /test/TestProcpipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/test/TestProcpipeline.py -------------------------------------------------------------------------------- /test/TestServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semanticize/semanticizer/HEAD/test/TestServer.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------