Class DefaultStatsInitializationConfiguration
- java.lang.Object
-
- org.deeplearning4j.ui.model.stats.impl.DefaultStatsInitializationConfiguration
-
- All Implemented Interfaces:
Serializable,StatsInitializationConfiguration
public class DefaultStatsInitializationConfiguration extends Object implements StatsInitializationConfiguration
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultStatsInitializationConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancollectHardwareInfo()Should hardware configuration information be collected? JVM available processors, number of devices, total memory for each devicebooleancollectModelInfo()Should model information be collected? Model class, configuration (JSON), number of layers, number of parameters, etc.booleancollectSoftwareInfo()Should software configuration information be collected? For example, OS, JVM, and ND4J backend details
-
-
-
Method Detail
-
collectSoftwareInfo
public boolean collectSoftwareInfo()
Description copied from interface:StatsInitializationConfigurationShould software configuration information be collected? For example, OS, JVM, and ND4J backend details- Specified by:
collectSoftwareInfoin interfaceStatsInitializationConfiguration- Returns:
- true if software information should be collected; false if not
-
collectHardwareInfo
public boolean collectHardwareInfo()
Description copied from interface:StatsInitializationConfigurationShould hardware configuration information be collected? JVM available processors, number of devices, total memory for each device- Specified by:
collectHardwareInfoin interfaceStatsInitializationConfiguration- Returns:
- true if hardware information should be collected
-
collectModelInfo
public boolean collectModelInfo()
Description copied from interface:StatsInitializationConfigurationShould model information be collected? Model class, configuration (JSON), number of layers, number of parameters, etc.- Specified by:
collectModelInfoin interfaceStatsInitializationConfiguration- Returns:
- true if model information should be collected
-
-