Fix java tests.
This commit is contained in:
Fangjun Kuang
2024-02-26 13:49:37 +08:00
committed by GitHub
parent ee37d9bd92
commit fb04366179
15 changed files with 561 additions and 532 deletions

View File

@@ -5,19 +5,19 @@
package com.k2fsa.sherpa.onnx;
public class OnlineLMConfig {
private final String model;
private final float scale;
private final String model;
private final float scale;
public OnlineLMConfig(String model, float scale) {
this.model = model;
this.scale = scale;
}
public OnlineLMConfig(String model, float scale) {
this.model = model;
this.scale = scale;
}
public String getModel() {
return model;
}
public String getModel() {
return model;
}
public float getScale() {
return scale;
}
public float getScale() {
return scale;
}
}