All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deeplearning4j.ui.flow.beans.Description Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
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