File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ Human Behaviour Change Project Information Extraction (hbcpIE)
2+ The project executes the following action:
3+
4+ Indexes a collection of documents
5+ Store them in a Lucene index
6+ Extracts pieces of information from arbitrary passages.
7+ Running the project
8+ To run the project, simply type from your command-line.
9+
Original file line number Diff line number Diff line change 1+ /Library/Java/JavaVirtualMachines/jdk1.8.0_111.jdk/Contents/Home/jre/../bin/javadoc @options @packages
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ api
2+ experiments
3+ extractor
4+ glm
5+ indexer
6+ nb
7+ normrsv
8+ ref
9+ servlets
10+ tableanalyzer
11+ wvec
Original file line number Diff line number Diff line change 1+ ref
2+ tableanalyzer
3+ experiments
4+ servlets
5+ extractor
6+ nb
7+ api
8+ wvec
9+ glm
10+ indexer
11+ normrsv
Original file line number Diff line number Diff line change 1+ function show ( type )
2+ {
3+ count = 0 ;
4+ for ( var key in methods ) {
5+ var row = document . getElementById ( key ) ;
6+ if ( ( methods [ key ] & type ) != 0 ) {
7+ row . style . display = '' ;
8+ row . className = ( count ++ % 2 ) ? rowColor : altColor ;
9+ }
10+ else
11+ row . style . display = 'none' ;
12+ }
13+ updateTabs ( type ) ;
14+ }
15+
16+ function updateTabs ( type )
17+ {
18+ for ( var value in tabs ) {
19+ var sNode = document . getElementById ( tabs [ value ] [ 0 ] ) ;
20+ var spanNode = sNode . firstChild ;
21+ if ( value == type ) {
22+ sNode . className = activeTableTab ;
23+ spanNode . innerHTML = tabs [ value ] [ 1 ] ;
24+ }
25+ else {
26+ sNode . className = tableTab ;
27+ spanNode . innerHTML = "<a href=\"javascript:show(" + value + ");\">" + tabs [ value ] [ 1 ] + "</a>" ;
28+ }
29+ }
30+ }
You can’t perform that action at this time.
0 commit comments