eethos.neureka.1.0.1.source-code.library_settings.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neureka Show documentation
Show all versions of neureka Show documentation
A platform independent tensor library written in Java.
The newest version!
import neureka.Neureka
import neureka.dtype.custom.F64
Neureka.configure {
settings {
debug {
it.isKeepingDerivativeTargetPayloads = false
it.isDeletingIntermediateTensors = true
}
autograd {
it.isPreventingInlineOperations = true
it.isRetainingPendingErrorForJITProp = false
it.isApplyingGradientWhenTensorIsUsed = false
it.isApplyingGradientWhenRequested = false
}
view {
ndArrays {
it.rowLimit = 50
it.isScientific = true
it.isMultiline = true
it.hasSlimNumbers = true
it.hasGradient = true
it.cellSize = 6
it.hasValue = true
it.hasRecursiveGraph = false
it.hasDerivatives = false
it.hasShape = true
it.isCellBound = false
it.postfix = ""
it.prefix = ""
it.indent = ""
it.isLegacy = false
}
}
ndim {
it.isOnlyUsingDefaultNDConfiguration = false
}
dtype {
it.defaultDataTypeClass = F64.class
it.isAutoConvertingExternalDataToJVMTypes = true
}
}
return "1.0.1"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy