ConvPadding

enum ConvPadding : Enum<ConvPadding>

Type of padding.

Entries

FULL
Link copied to clipboard
FULL("FULL")

Full padding. For Keras compatibility goals.

VALID
Link copied to clipboard
VALID("VALID")

No padding. Results in smaller output size for kernelSize > 1

SAME
Link copied to clipboard
SAME("SAME")

Results in padding evenly to the left/right or up/down of the input such that output has the same height/width dimension as the input.

Properties

name
Link copied to clipboard
val name: String
ordinal
Link copied to clipboard
val ordinal: Int