diff --git a/src/main/java/org/dromara/easyai/resnet/entity/ResnetError.java b/src/main/java/org/dromara/easyai/resnet/entity/ResnetError.java new file mode 100644 index 0000000..449e10a --- /dev/null +++ b/src/main/java/org/dromara/easyai/resnet/entity/ResnetError.java @@ -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 resErrorMatrixList;//残差误差 + private List nextErrorMatrixList; + + public List getResErrorMatrixList() { + return resErrorMatrixList; + } + + public void setResErrorMatrixList(List resErrorMatrixList) { + this.resErrorMatrixList = resErrorMatrixList; + } + + public List getNextErrorMatrixList() { + return nextErrorMatrixList; + } + + public void setNextErrorMatrixList(List nextErrorMatrixList) { + this.nextErrorMatrixList = nextErrorMatrixList; + } +}