Expand description
TinyTimeMixer inference engine.
Architecture: MLP-Mixer with adaptive patching.
- StdScaler → Patchify → Linear patcher → 3 adaptive levels → Linear adapter → 2 decoder layers → Flatten → Linear head → inverse scale
- No attention. Each “mixer layer” = PatchMixerBlock + FeatureMixerBlock.
- GatedAttention: softmax(linear(x)) * x applied after each MLP.
Structs§
- TtmModel
- TtmModel
Builder - Fluent constructor for
TtmModel.TtmConfig(from a parsedconfig.json) doubles as this model’s load-time config — there’s no separateInferConfigto map onto.