All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.alink.operator.common.nlp.jiebasegment.Pair Maven / Gradle / Ivy

package com.alibaba.alink.operator.common.nlp.jiebasegment;

public class Pair {
    public K key;
    public Double freq = 0.0;

    public Pair(K key, double freq) {
	this.key = key;
	this.freq = freq;
    }

    @Override
    public String toString() {
	return "Candidate [key=" + key + ", freq=" + freq + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy