main
public static void main(java.lang.String[] args)
Class for finding Named Entity Evolution Recognition (NEER) in ARCOMEM.
For each query term query_term that we want to find NEE's for, we need to
have found
1. change periods E.g., march2001 september2001 OR 2001 2005 ..
2. extracted named entities for these change periods and store them in files, called dictionaries
where each dictionary file must be stored in a dictionary folder and have the query_term,
the change period, and the term dict in the name .
E.g., /home/Arcomem/dictionaries/dict-query_term-change_period.txt
Each dictionary should have content in the form:
term \t frequency
E.g.,
hillary diane rodham clinton 1
incontrovertible 1
grammy 2
In the dictionary terms are space separated.
3. extracted co-occurrence graphs for these change periods and store them in files, called graphs
where each graph file must be stored in a graph folder and have the query_term and
the change period, and the term graph in the name.
E.g., /home/Arcomem/graphs/graph-query_term-change_period.txt
Each graph should have content in the form
term \t term \t raw_fr \t norm_fr
E.g.,
Democrats Republicans 63 0.677419
Mrs_Clinton White_House 62 0.666667
In the graph space separated terms are represented with underscores, e.g., Mrs_Clinton
4. stopwords file with full path. E.g., /home/Acromeme/stopwords.txt"+
- Parameters:
args -