Skip to content
Permalink
0d82ff1dc4
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
53 lines (46 sloc) 1.16 KB
package kb.howtokb.clustering.sim;
public class Coefficient {
/*=======Coefficient================
* verb
* object
* category
* location
* time
* part object
* part agent
* weak verb
* weak object
* vvnn
*/
public static double[] ALL_COEF = new double[]{5.4, 0.16, 3.074, -1.45, -2.08, 0.893,
-0.586, 0.796, 2.388, 6.763};
public static double INTERCEPT = -11.414;
public static double[] COEF_WITHOUT_WEAK = new double[]{5.289, 1.3, 3.173, -1.44, -2.047, 1.386,
-0.52, 7.011};
public static double INTERCEPT_WITHOUT_WEAK = -10.638;
//threshold
public static double CATE_THRES = 0.362;
public static double VVNN_TRHES = 0.5;
public static double V_THRES = 0.747;
public static double O_THRES = 0.67;
//Coefficient with parent, prev/next/ sub-act
/*=======Full Coefficient================
* verb
* object
* category
* location
* time
* part object
* part agent
* weak verb
* weak object
* vvnn
* parent
* prev
* next
* sub-act
*/
public static double[] FULL_COEF = new double[]{5.2, 0.41, 3.006, -2.12, -2.69, 1.45,
-0.328, 0.426, 2.452, 6.983, -0.706, -0.963, 0.378, -0.564};
public static double INTERCEPT_FULL = -11.455;
}