File: ClusterNGramBlocker.java

package info (click to toggle)
libsecondstring-java 0.1~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 764 kB
  • sloc: java: 9,592; xml: 114; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 288 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.wcohen.ss.expt;

/**
 * TokenBlocker for clustering based on NGram co-occurence.
 */

public class ClusterNGramBlocker extends NGramBlocker
{
	public ClusterNGramBlocker() {
		super();
		setClusterMode(true);
	}
	public String toString() { return "[ClusterNGramBlocker]"; }
}