This commit is contained in:
2025-09-04 14:09:19 +08:00
parent 797f8d09fe
commit c800d343af

View File

@@ -0,0 +1,23 @@
package org.dromara.easyai.transFormer.model;
public class LayNormModel {
private float[][] bTa;//模型需要保存
private float[][] power;//模型需要保存
public float[][] getbTa() {
return bTa;
}
public void setbTa(float[][] bTa) {
this.bTa = bTa;
}
public float[][] getPower() {
return power;
}
public void setPower(float[][] power) {
this.power = power;
}
}