Placeholder - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DeepLearning

  

Placeholder

  

define a placeholder for a Tensor

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

Placeholder(val,shape,opts)

Parameters

val

-

type or Tensor

shape

-

(optional) dimensions of the placeholder

opts

-

zero or more options as described below

Options

• 

name = string

  

The value of option name specifies an optional name for this Tensor to be displayed in output and when visualizing the dataflow graph.

Description

• 

The Placeholder(val,shape) command creates a placeholder Tensor in the active dataflow graph.

• 

The parameter val can be a type or a Tensor.

• 

If val is a type, a value must be supplied for this placeholder when the the graph is executed.

• 

Note that this command requires that eager execution be turned off beforehand using the SetEagerExecution command.

• 

This function is part of the DeepLearning package, so it can be used in the short form Placeholder(..) only after executing the command with(DeepLearning). However, it can always be accessed through the long form of the command by using DeepLearning[Placeholder](..).

Examples

withDeepLearning:

SetEagerExecutionfalse

true

(1)

xPlaceholderfloat8

xDeepLearning TensorName: Placeholder:0Shape: undefinedData Type: float[8]

(2)

y3x2

yDeepLearning TensorName: scalar_mul:0Shape: undefinedData Type: float[8]

(3)

sessGetDefaultSession

sessDeepLearning Session<tensorflow.python.client.session.InteractiveSession object at 0x7fc5719e2550>

(4)

sess:-Runy&comma;xin1&comma;2&comma;3

3.12.27.

(5)

Compatibility

• 

The DeepLearning[Placeholder] command was introduced in Maple 2018.

• 

For more information on Maple 2018 changes, see Updates in Maple 2018.

• 

The DeepLearning[Placeholder] command was updated in Maple 2021.

• 

The  option was updated in Maple 2021.

See Also

DeepLearning Overview