My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/**
* boilerpipe
*
* Copyright (c) 2009, 2010 Christian Kohlschütter
*
* The author licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.l3s.boilerpipe.extractors;

import java.util.List;
import java.util.ListIterator;

import de.l3s.boilerpipe.BoilerpipeFilter;
import de.l3s.boilerpipe.BoilerpipeProcessingException;
import de.l3s.boilerpipe.document.TextBlock;
import de.l3s.boilerpipe.document.TextDocument;
import de.l3s.boilerpipe.estimators.SimpleEstimator;

/**
* A full-text extractor trained on <a href="http://krdwrd.org/">krdwrd</a> <a
* href
* ="https://krdwrd.org/trac/attachment/wiki/Corpora/Canola/CANOLA.pdf">Canola
* </a>. Works well with {@link SimpleEstimator}, too.
*
* @author Christian Kohlschütter
*/
public class CanolaExtractor extends ExtractorBase {
public static final CanolaExtractor INSTANCE = new CanolaExtractor();

/**
* Returns the singleton instance for {@link CanolaExtractor}.
*/
public static CanolaExtractor getInstance() {
return INSTANCE;
}

public boolean process(TextDocument doc)
throws BoilerpipeProcessingException {

return CLASSIFIER.process(doc);
}

/**
* The actual classifier, exposed.
*/
public static final BoilerpipeFilter CLASSIFIER = new BoilerpipeFilter() {

public boolean process(TextDocument doc)
throws BoilerpipeProcessingException {
List<TextBlock> textBlocks = doc.getTextBlocks();
boolean hasChanges = false;

ListIterator<TextBlock> it = textBlocks.listIterator();
if (!it.hasNext()) {
return false;
}
TextBlock prevBlock = TextBlock.EMPTY_START;
TextBlock currentBlock = it.next();
TextBlock nextBlock = it.hasNext() ? it.next()
: TextBlock.EMPTY_START;

hasChanges = classify(prevBlock, currentBlock, nextBlock)
| hasChanges;

if (nextBlock != TextBlock.EMPTY_START) {
while (it.hasNext()) {
prevBlock = currentBlock;
currentBlock = nextBlock;
nextBlock = it.next();
hasChanges = classify(prevBlock, currentBlock, nextBlock)
| hasChanges;
}
prevBlock = currentBlock;
currentBlock = nextBlock;
nextBlock = TextBlock.EMPTY_START;
hasChanges = classify(prevBlock, currentBlock, nextBlock)
| hasChanges;
}

return hasChanges;
}

protected boolean classify(final TextBlock prev, final TextBlock curr,
final TextBlock next) {
final boolean isContent = (curr.getLinkDensity() > 0 && next
.getNumWords() > 11)
|| (curr.getNumWords() > 19 || (next.getNumWords() > 6
&& next.getLinkDensity() == 0
&& prev.getLinkDensity() == 0 && (curr
.getNumWords() > 6 || prev.getNumWords() > 7 || next
.getNumWords() > 19)));

return curr.setIsContent(isContent);
}
};
}

Change log

r100 by c...@newsclub.de on Nov 2, 2010   Diff
New extractor, trained on krdwrd Canola.
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 3255 bytes, 106 lines

File properties

svn:mime-type
text/plain
Powered by Google Project Hosting