LostTech.TensorFlow : API Documentation

Type InputSpec

Namespace tensorflow.layers

Parent PythonObjectContainer

Interfaces IInputSpec

Specifies the ndim, dtype and shape of every input to a layer.

Every layer should expose (if appropriate) an `input_spec` attribute: a list of instances of InputSpec (one per input tensor).

A None entry in a shape is compatible with any dimension, a None shape is compatible with any shape.

Methods

Properties

Public static methods

TClass from_config<TClass>(object config)

Instantiates a `LearningRateSchedule` from its config.
Parameters
object config
Output of `get_config()`.
Returns
TClass
A `LearningRateSchedule` instance.

Public properties

IDictionary<int, object> axes get; set;

string dtype get; set;

Nullable<int> max_ndim get; set;

Nullable<int> min_ndim get; set;

Nullable<int> ndim get; set;

object PythonObject get;

object shape get; set;