Cropping2D

class Cropping2D(cropping: Array<IntArray>, name: String) : AbstractCropping

Cropping layer for 2D data (e.g. images)

Crops input along the second and third dimensions (i.e. spatial dimensions).

Input shape: 4D tensor with shape (batch_size, rows, cols, channels).

Output shape: 4D tensor with shape (batch_size, cropped_rows, cropped_cols, channels).

Constructors

Cropping2D
Link copied to clipboard
fun Cropping2D(cropping: Array<IntArray>, name: String = "")

Functions

build
Link copied to clipboard
open override fun build(tf: Ops, kGraph: KGraph, inputShape: Shape)

Extend this function to define variables in layer.

buildFromInboundLayers
Link copied to clipboard
fun buildFromInboundLayers(tf: Ops, kGraph: KGraph)

Extend this function to define variables in layer.

computeOutputShape
Link copied to clipboard
open override fun computeOutputShape(inputShape: Shape): Shape

Computes output shape, based on inputShape and Layer type.

computeOutputShapeFromInboundLayers
Link copied to clipboard
open fun computeOutputShapeFromInboundLayers(): TensorShape

Computes output shape, based on input shapes of inbound layers.

forward
Link copied to clipboard
open override fun forward(tf: Ops, input: Operand<Float>, isTraining: Operand<Boolean>, numberOfLosses: Operand<Float>?): Operand<Float>

Builds main layer input transformation with tf. Depends on Layer type.

open fun forward(tf: Ops, input: List<Operand<Float>>, isTraining: Operand<Boolean>, numberOfLosses: Operand<Float>?): Operand<Float>

Builds main layer input transformation with tf. Depends on Layer type.

invoke
Link copied to clipboard
operator fun invoke(vararg layers: Layer): Layer

Important part of functional API. It takes layers as input and saves them to the inboundLayers of the given layer.

toString
Link copied to clipboard
open override fun toString(): String

Properties

cropping
Link copied to clipboard
val cropping: Array<IntArray>

An array consisting of two integer arrays of size two which are interpreted as [[top_crop, bottom_crop], [left_crop, right_crop]].

croppingInternal
Link copied to clipboard
val croppingInternal: Array<IntArray>

Cropping size values; currently, they are not used in the implementation of this abstract class and each subclassed layer uses its own copy of the cropping size values.

hasActivation
Link copied to clipboard
open override val hasActivation: Boolean

Returns True, if layer has internal activation function.

inboundLayers
Link copied to clipboard
var inboundLayers: MutableList<Layer>

Returns inbound layers.

isTrainable
Link copied to clipboard
var isTrainable: Boolean = true

True, if layer's weights could be changed during training. If false, layer's weights are frozen and could be changed during the training.

name
Link copied to clipboard
var name: String
outboundLayers
Link copied to clipboard
var outboundLayers: MutableList<Layer>

Returns outbound layers.

outputShape
Link copied to clipboard
lateinit var outputShape: TensorShape

Output data tensor shape.

paramCount
Link copied to clipboard
open override val paramCount: Int

Returns amount of neurons.

parentModel
Link copied to clipboard
var parentModel: TrainableModel? = null

Model where this layer is used.

weights
Link copied to clipboard
open override var weights: Map<String, Array<*>>

Layer's weights.