data
InceptionConfig
extends
ModelConfigInceptionConfig(num_classes: int = 1000, in_channels: int = 3, version: str = 'v3', aux_logits: bool = False, dropout: float = 0.5)Configuration for Inception v3.
aux_logits enables the auxiliary classifier that attaches after the
second InceptionC block (used during training with weight 0.4).
dropout — main head dropout rate (0.5 in the paper).
version — only "v3" is supported in this module.