~brad-block/jbtcrf/0.8

« back to all changes in this revision

Viewing changes to src/com/pawjaw/classification/crf/lmcbt/tests/HyphenTest.java

  • Committer: Brad Block
  • Date: 2013-02-07 16:06:01 UTC
  • Revision ID: opensource@pawjaw.com-20130207160601-cl1ldpbumbez7312
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2012, 2013 Brad Block, Pawjaw, LLC. (an Ohio Limited Liability Company)
 
2
// 
 
3
// This file is part of JBTCRF.
 
4
// 
 
5
// JBTCRF is free software: you can redistribute it and/or modify
 
6
// it under the terms of the GNU General Public License as published by
 
7
// the Free Software Foundation, either version 3 of the License, or
 
8
// (at your option) any later version.
 
9
// 
 
10
// JBTCRF is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
// GNU General Public License for more details.
 
14
// 
 
15
// You should have received a copy of the GNU General Public License
 
16
// along with JBTCRF.  If not, see <http://www.gnu.org/licenses/>.
 
17
 
 
18
package com.pawjaw.classification.crf.lmcbt.tests;
 
19
 
 
20
import com.pawjaw.classification.crf.lmcbt.readers.LabeledSequenceDataReader;
 
21
import com.pawjaw.classification.crf.lmcbt.readers.TreeCRFLabeledSequenceDataReader;
 
22
import java.io.File;
 
23
import java.io.IOException;
 
24
 
 
25
public class HyphenTest extends CRFTest {
 
26
    public int getWindowRadius() {
 
27
        return 3;
 
28
    }
 
29
 
 
30
    public LabeledSequenceDataReader getLabeledSequenceDataReader() {
 
31
        return new TreeCRFLabeledSequenceDataReader();
 
32
    }
 
33
}