アップサンプリング3D

@frozen
public struct UpSampling3D<Scalar> : ParameterlessLayer where Scalar : TensorFlowFloatingPoint

3D 入力のアップサンプリング レイヤー。

  • 宣言

    public typealias TangentVector = EmptyTangentVector
  • 宣言

    @noDerivative
    public let size: Int
  • アップサンプリング レイヤーを作成します。

    宣言

    public init(size: Int)

    パラメーター

    size

    行と列のアップサンプリング係数。

  • 指定された入力にレイヤーを適用して得られた出力を返します。

    宣言

    @differentiable
    public func forward(_ input: Tensor<Scalar>) -> Tensor<Scalar>

    パラメーター

    input

    レイヤーへの入力。

    戻り値

    出力。