Architecture: What Inkling Actually Borrowed from DeepSeek
Inkling's design is openly acknowledged to draw from DeepSeek V3, but calling it a copy would be inaccurate [5]. The underlying blueprint is a 66-layer decoder-only transformer with 256 routed experts and 2 shared experts per MoE layer - with 6 routed experts activating per token [2]. This expert-routing density is what makes the 41B active parameter count possible despite a 975B total footprint. The key departure from prior MoE designs is a sigmoid-based router with auxiliary-loss-free load balancing, meaning the model does not penalize the routing loss during training - a technique DeepSeek V3 pioneered that Thinking Machines adapted [2].
Attention is handled via interleaved sliding-window and global attention in a 5:1 ratio, trading raw full-context compute for efficiency at most sequence positions [2]. Multimodality is woven in at the token level without a separate encoder tower: audio enters as dMel spectrograms and images as 40x40-pixel patches through a four-layer hMLP encoder that feeds directly into the same token stream [2]. Training used a hybrid optimizer - Muon for large matrix weights and Adam for all other parameters - on Nvidia GB300 NVL72 systems [3]. The combination of architectural borrowing from a proven Chinese MoE and US-built hardware infrastructure produced a model trained entirely from scratch in under 9 months [1].


