ConvTranspose1d Type

A model that applies a 1D transposed convolution operator over an input image composed of several input planes.

Constructors

Constructor Description

ConvTranspose1d(inChannels, outChannels, kernelSize, ?stride, ?padding, ?dilation, ?bias)

Full Usage: ConvTranspose1d(inChannels, outChannels, kernelSize, ?stride, ?padding, ?dilation, ?bias)

Parameters:
    inChannels : int
    outChannels : int
    kernelSize : int
    ?stride : int
    ?padding : int
    ?dilation : int
    ?bias : bool

Returns: ConvTranspose1d
inChannels : int
outChannels : int
kernelSize : int
?stride : int
?padding : int
?dilation : int
?bias : bool
Returns: ConvTranspose1d

Instance members

Instance member Description

this.bias

Full Usage: this.bias

Get or set the bias parameter of the model

this.weight

Full Usage: this.weight

Get or set the weight parameter of the model


© Copyright 2021, DiffSharp Contributors.