DeepLearning/EmbeddingLayer - Maple Help

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : DeepLearning/EmbeddingLayer

DeepLearning

  

EmbeddingLayer

  

embedding layer

 

Calling Sequence

Parameters

Description

Details

Compatibility

Calling Sequence

EmbeddingLayer(inputdim,outputdim,opts)

Parameters

inputdim, outputdim

-

positive integers

opts

-

(optional) one or more keyword options described below

Description

• 

EmbeddingLayer(inputdim,outputdim,opts) creates an embedding neural network layer with input dimention inputdim and output dimension outputdim.

• 

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

Details

• 

The implementation of EmbeddingLayer uses tf.keras.layers.Embedding from the TensorFlow Python API. Consult the TensorFlow Python API documentation for tf.keras.layers.Embedding for more information.

Compatibility

• 

The DeepLearning[EmbeddingLayer] command was introduced in Maple 2021.

• 

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

See Also

DeepLearning Overview