You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This distribution contains the source code for the experiments presented in the following research publication (PDF):
Xiao Ling and Daniel S. Weld (2012).
"Fine-Grained Entity Recognition",
in Proceedings OF THE TWENTY-SIXTH AAAI CONFERENCE ON ARTIFICIAL INTELLIGENCE (AAAI), 2012.
Download the model file
One can test the trained model on the evaluation data or new data as they wish.
Run ./downloadModel.sh to download the Model and save it at the root directory. Run ./downloadModel.sh new for
an updated model.
A better model has been trained and can be fetched by ./downloadModel.sh new. Change the config value accordingly.
Requirement
sbt >= 0.13.0
Replicate the experiments
To run the experiments in the AAAI-12 paper, you can proceed as follows:
$ ./run.sh "aaai/exp.conf" &> aaai/exp.log
Run FIGER on new data
To make predictions on new data, please see package edu.washington.cs.figer.FigerSystem for example code or run:
Alternatively, you can change the parameter values (e.g. the input file name) in config/figer.conf and get a more structured output by running:
$ ./run.sh "config/figer.conf"
Make a stand-alone jar
$ sbt assembly
# the actual path might be different
$ java -jar ./target/scala-2.10/figer-assembly-0.jar <text_file>
A simple web interface
Run
$ sbt ~container:start
and go to localhost:8080/index.html for a simple web demo.
Training Data
The training data train.data.gz (Download link) is gzipped and serialized in Protocol Buffer. Please see entity.proto in the code package for the definitions. Each Mention represents an entity mention defined by its token offsets together with the tokens in the sentence where the mention appears. The labels field shows the Freebase types of the underlying entity for the mention. Use the mapping in the next section to get the corresponding FIGER types.
In config/figer.conf, make the following changes:
useModel=false
modelFile=<the output model file>
# the training file has to follow the specs from `entity.proto`. See `train.data.gz` for example
trainFile=<training file>
Then run ./run.sh config/figer.conf to train a new model (It will need over 10G memory and about an hour to finish).
Mapping between Freebase MIDs and Wikipedia Titles
A mapping file from mids to titles is available here.