package org.dromara.easyai.nerveEntity; import java.util.HashMap; import java.util.Map; /** * @author lidapeng * @description * @date 3:36 下午 2020/1/8 */ public class NerveStudy { private Map dendrites = new HashMap<>();//上一层权重(需要取出) private float threshold;//此神经元的阈值需要取出 public Map getDendrites() { return dendrites; } public void setDendrites(Map dendrites) { this.dendrites = dendrites; } public float getThreshold() { return threshold; } public void setThreshold(float threshold) { this.threshold = threshold; } }