Skip to content

Latest commit

History

History
17 lines (11 loc) 路 310 Bytes

Dropout.mdx

File metadata and controls

17 lines (11 loc) 路 310 Bytes

import { Callout } from "nextra-theme-docs" import { Tab, Tabs } from "nextra-theme-docs"

Dropout

A dropout layer that wraps a given Component.

Dropout(nn.Linear(128, 256), p=0.2)

Forward

(x: jaxtyping.Float[Tensor, ' *shape']) -> jaxtyping.Float[Tensor, ' *shape']