This commit is contained in:
2025-09-04 14:09:34 +08:00
parent ce0c970bf3
commit 4482b9eb0c

View File

@@ -0,0 +1,30 @@
package org.dromara.easyai.resnet.entity;
import org.dromara.easyai.matrixTools.Matrix;
import java.util.List;
/**
* @author lidapeng
* @time 2025/4/16 11:19
*/
public class ResnetError {
private List<Matrix> resErrorMatrixList;//残差误差
private List<Matrix> nextErrorMatrixList;
public List<Matrix> getResErrorMatrixList() {
return resErrorMatrixList;
}
public void setResErrorMatrixList(List<Matrix> resErrorMatrixList) {
this.resErrorMatrixList = resErrorMatrixList;
}
public List<Matrix> getNextErrorMatrixList() {
return nextErrorMatrixList;
}
public void setNextErrorMatrixList(List<Matrix> nextErrorMatrixList) {
this.nextErrorMatrixList = nextErrorMatrixList;
}
}