static {
   System.loadLibrary("modshogun");
 }
Beispiel #2
0
 public void flatten() {
   System.arraycopy(W.data, 0, Theta, 0, FeatureLength * CatSize);
   System.arraycopy(b.data, 0, Theta, FeatureLength * CatSize, CatSize);
 }
Beispiel #3
0
 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");
 }