Interface StatsInitializationConfiguration
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
DefaultStatsInitializationConfiguration
public interface StatsInitializationConfiguration extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
collectHardwareInfo()
Should hardware configuration information be collected? JVM available processors, number of devices, total memory for each deviceboolean
collectModelInfo()
Should model information be collected? Model class, configuration (JSON), number of layers, number of parameters, etc.boolean
collectSoftwareInfo()
Should software configuration information be collected? For example, OS, JVM, and ND4J backend details
-
-
-
Method Detail
-
collectSoftwareInfo
boolean collectSoftwareInfo()
Should software configuration information be collected? For example, OS, JVM, and ND4J backend details- Returns:
- true if software information should be collected; false if not
-
collectHardwareInfo
boolean collectHardwareInfo()
Should hardware configuration information be collected? JVM available processors, number of devices, total memory for each device- Returns:
- true if hardware information should be collected
-
collectModelInfo
boolean collectModelInfo()
Should model information be collected? Model class, configuration (JSON), number of layers, number of parameters, etc.- Returns:
- true if model information should be collected
-
-