static { System.loadLibrary("modshogun"); }
public void flatten() { System.arraycopy(W.data, 0, Theta, 0, FeatureLength * CatSize); System.arraycopy(b.data, 0, Theta, FeatureLength * CatSize, CatSize); }
private void build() { System.arraycopy(Theta, 0, W.data, 0, FeatureLength * CatSize); System.arraycopy(Theta, FeatureLength * CatSize, b.data, 0, CatSize); }
static { System.loadLibrary("Features"); System.loadLibrary("Distance"); }