Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 482 Bytes

stacked-embedding.md

File metadata and controls

14 lines (9 loc) · 482 Bytes

Stacked Embedding

StackedEmbedding is a special kind of embedding class, which will able to stack other embedding layers togather for multi-input models.

More details checkout the example: Handle Numeric features

kashgari.embeddings.StackedEmbedding(embeddings: List[Embedding],
                                     processor: Optional[BaseProcessor] = None)

Arguments

  • embeddings: list of embedding object.