Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 844 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 844 Bytes

Automatic Tagging Library for free text based on Independent Component Analysis technique.

Build Status

Setup

  • Install Python 2.7.x
  • Install virtualenv to manage packages
pip install virtualenv
virtualenv .env # this creates environment for this application
source .env/bin/activate 
  • Install packages from eggs.txt
pip install -r eggs.txt
  • Install nltk data packages, from python prompt execute these
python setup.py

Usage

  • After the setup you can run the following script against a document directory to generate most significant tags
./run.py <content directory path>

Running Tests

Either use the helper script ./t or run the command python -m unittest -v tests