5ec2d9e9a4
This commit adds config parameters for thumbnail quality, max thumbnail size and geocoding api as well as a flag to to disable TensorFlow. Signed-off-by: Michael Mayer <michael@liquidbytes.net>
13 lines
388 B
Go
13 lines
388 B
Go
package config
|
|
|
|
import tf "github.com/tensorflow/tensorflow/tensorflow/go"
|
|
|
|
// TensorFlowVersion returns the TenorFlow framework version.
|
|
func (c *Config) TensorFlowVersion() string {
|
|
return tf.Version()
|
|
}
|
|
|
|
// TensorFlowDisabled returns true if the use of TensorFlow is disabled for image classification.
|
|
func (c *Config) TensorFlowDisabled() bool {
|
|
return c.config.DisableTensorFlow
|
|
}
|