From 4482b9eb0c7e7ae6b7bd296ad2f178bdda9c7e37 Mon Sep 17 00:00:00 2001 From: inter Date: Thu, 4 Sep 2025 14:09:34 +0800 Subject: [PATCH] Add File --- .../easyai/resnet/entity/ResnetError.java | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/main/java/org/dromara/easyai/resnet/entity/ResnetError.java 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; + } +}