org.deeplearning4j.ui.flow.beans.Description Maven / Gradle / Ivy
package org.deeplearning4j.ui.flow.beans;
import lombok.Data;
import java.io.Serializable;
/**
* Description bean holds few lines worth text description for any layer
*
* @author [email protected]
*/
@Data
public class Description implements Serializable {
private final static long serialVersionUID = 119L;
private String mainLine = "";
private String subLine = "";
private String text = "";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy