-
Notifications
You must be signed in to change notification settings - Fork 37
Tagger
Name: aidr-tagger
Code: https://github.com/Qatar-Computing-Research-Institute/CrisisComputing/tree/master/aidr-tagger and https://github.com/Qatar-Computing-Research-Institute/CrisisComputing/tree/master/aidr-tagger-api
The tagger module is the core of AIDR as a classification system. It is not the most complex part of AIDR, but it requires some understanding of how machine learning works. If you haven't done it yet, see Tagger Concepts for some preliminary concepts on machine learning.
The aidr-tagger module has three main functions: to tag (classify) new items, to build and re-build the classification model, and to sample for the human annotators.
The main function of aidr-tagger is to classify items. It reads collected items and automatically assign a label to them. This is done using a classification model built using Weka.
The second function of aidr-tagger is to build a classification model. This is done by receiving human-tagged items and feeding them as training examples to Weka. Every 50 new human-tagged items, a new model is built using all human-tagged items available up to that point in time.
The third function of aidr-tagger is to sample data for human annotators. It selects a varied and recent subset of tagged elements that were not trivial to tag (i.e. for which its confidence was low), and places them in the task buffer. The selection of these items is done using an active learning criterion by which the items for which the classifier's confidence is minimum are selected first.
Tagging is done in two steps: 1a. feature extraction, and 1b. classification.
As an initial step AidrFetcherJsonInputProcessor
reads from the Redis queue to which the collector writes collected items, and writes them to Redis queue REDIS_FOR_EXTRACTION_QUEUE
.
The feature extractor reads from the queue REDIS_FOR_EXTRACTION_QUEUE
and perform the following processing for each item:
- Tokenization - this converts a single string into a list of words, using spaces and other separators.
- Stopword removal - this removes words that have no meaning on their own, such as determinants and prepositions. Currently, this is a no-operation. In the future, this should look at the language of the tweet (as returned by Twitter, no need to analyze it here), and use a language-specific stopword list.
- Stemming - this converts words to a normalized form, e.g. by removing plural suffixes or -ing endings. Currently, there is a naive stemmer based on 3-4 patterns. In the future, this should use a language-sensitive stemming package such as Snowball. Weka code also includes the Snowball Stemmer, so this should be simple.
- Construction of bigrams - in addition to all words, features include all two-word sequences in the input string.
The feature extractor writes the extracted features into the REDIS_FOR_CLASSIFICATION_QUEUE
.
The model controller reads from the REDIS_FOR_CLASSIFICATION_QUEUE
and passing them to the current classification model for that classifier (the active model in the model family).
Additionally, it maintains statistics about how many items have been classified into different categories.
Finally, it writes the output twice: first to REDIS_FOR_OUTPUT_QUEUE
, and also to REDIS_LABEL_TASK_WRITE_QUEUE
.
The aidr-tagger takes human-annotated examples and calls Weka to build a model. Most of the functionality is done by Weka, but aidr-tagger needs to (i) partition the human-annotated examples into training and evaluation, (ii) decide when to re-train, and (iii) maintain data about which is the most current model for each classifier.
The human-tagged examples are divided into two sets: 80% of them are actually used for training the new classifier, while 20% of them are kept for evaluation purposes, i.e. to compute AUC. The evaluation set is not picked randomly every time to ensure some degree of stability in the evaluation (there are other choices).
To decide when to re-train, aidr-tagger listens for events in a control queue named REDIS_TRAINING_SAMPLE_INFO_QUEUE
. Two types of events are available in the queue: (i) "new training example" and (ii) "force retrain". The first type of event informs aidr-tagger that new human-labelled examples are available in the database. The aidr-tagger waits for a sufficient number of non-null training examples (multiples of 50), and re-trains the model whenever this happens. The aidr-tagger also re-trains when it receives a "force retrain" event.
The aidr-tagger also maintains, for each model family, the latest and most recent classification model is marked as active and is the one used for tagging items.
The LabelingTaskWriter
thread ensures there are always enough elements in the task buffer, i.e. items that are waiting for a human label. Remember that the task buffer is a sub-set of rows in the document
table in the database.
It reads from the REDIS_LABEL_TASK_WRITE_QUEUE
, and writes to the task buffer. It favors items that have a high value as training examples, i.e. low classification confidence. It also attempts to do some de-duplication on a small in-memory buffer, keeping track of the last 50 items pushed to the task buffer, and making sure no item is selected as training example if it is too similar to them. This is done naively via exhaustive comparisons, which limits the size of this de-duplication buffer (in the future, this will be done using min-hash comparisons, which are faster).
For legacy reasons, aidr-tagger is implemented in two different modules, one of them a stand-alone Java application, and the other a Java EE application. Both are needed for the tagger to operate, and the plan is to merge them both into a Java EE application.
aidr-tagger (stand-alone Java application):
- WEKA 3.7.6 (Machine Learning library)
- Google GSON 2.2.4 (JSON processor)
- Jackson 1.9.13 (JSON processor) -- (redundant? --ChaTo)
- EJB 3.2 remote client (access to aidr-task-manager and aidr-db-manager remote EJB services)
- MySQL
- JEDIS 2.1.0 (connecting to REDIS)
aidr-tagger-api (Java EE application):
- EJB 3.2
- Jersey 2+
- Jackson 1.9.13 (JSON processor)
- FasterXML (JSON processor) -- (redundant? --ChaTo)
- aidr-common
- [aidr-task-manager](Task Manager)
- [aidr-db-manager](DB Manager)
- Home
- [What is AIDR?](AIDR Overview)
- The science behind AIDR
- [Operator's manual](AIDR Operator's Manual)
- [Public API documentation](API documentation)
- High-level overview
- Common
- DB Manager
- DTO standards
- Database schema
- Manager
- Manager API
- Collector
- Collector API
- Reconnect strategy
- Collector Tester
- Output
- Output API
- Output Buffered
- Output Streaming
- Output Tester
- Persister
- Persister API
- Persister Tester
- Tagger
- Tagger Concepts
- Tagger API
- Tagger Tester
- Trainer
- Trainer API
- PyBossa Trainer