• About Us
  • Privacy Policy
  • Disclaimer
  • Contact Us
AimactGrow
  • Home
  • Technology
  • AI
  • SEO
  • Coding
  • Gaming
  • Cybersecurity
  • Digital marketing
No Result
View All Result
  • Home
  • Technology
  • AI
  • SEO
  • Coding
  • Gaming
  • Cybersecurity
  • Digital marketing
No Result
View All Result
AimactGrow
No Result
View All Result

NVIDIA’s Cosmos-Framework Tutorial: Designing a Colab-Pleasant Miniature of Cosmos 3 World Fashions with Omnimodal Combination-of-Transformers

Admin by Admin
July 8, 2026
Home AI
Share on FacebookShare on Twitter


import torch.nn as nn
import torch.nn.useful as F
from dataclasses import dataclass
torch.manual_seed(0)
@dataclass
class Cfg:
   d_model:   int = 192
   n_head:    int = 6
   n_layer:   int = 4
   ffn_mult:  int = 2
   n_mod:     int = 3
   text_vocab:int = 16
   vis_dim:   int = 8
   act_dim:   int = 4
   Lt:        int = 8
   Lv:        int = 8
   La:        int = 6
cfg = Cfg()
class RMSNorm(nn.Module):
   def __init__(self, d, eps=1e-6):
       tremendous().__init__(); self.w = nn.Parameter(torch.ones(d)); self.eps = eps
   def ahead(self, x):
       return self.w * x * torch.rsqrt(x.pow(2).imply(-1, keepdim=True) + self.eps)
def build_rope(T, hd, machine, base=10000.0):
   pos  = torch.arange(T, machine=machine, dtype=torch.float32)[:, None]
   idx  = torch.arange(0, hd, 2, machine=machine, dtype=torch.float32)[None, :]
   freq = 1.0 / (base ** (idx / hd))
   ang  = pos * freq
   cos  = torch.cos(ang).repeat(1, 2)[None, None]
   sin  = torch.sin(ang).repeat(1, 2)[None, None]
   return cos, sin
def rotate_half(x):
   hd = x.form[-1]; x1, x2 = x[..., :hd // 2], x[..., hd // 2:]
   return torch.cat([-x2, x1], -1)
def apply_rope(q, okay, cos, sin):
   return q * cos + rotate_half(q) * sin, okay * cos + rotate_half(okay) * sin
class Consideration(nn.Module):
   """Shared cross-modal causal self-attention with rotary embeddings."""
   def __init__(self, c: Cfg):
       tremendous().__init__()
       self.H, self.hd = c.n_head, c.d_model // c.n_head
       self.qkv  = nn.Linear(c.d_model, 3 * c.d_model, bias=False)
       self.proj = nn.Linear(c.d_model, c.d_model, bias=False)
   def ahead(self, x, cos, sin, masks):
       B, T, D = x.form
       q, okay, v = self.qkv(x).chunk(3, -1)
       q = q.view(B, T, self.H, self.hd).transpose(1, 2)
       okay = okay.view(B, T, self.H, self.hd).transpose(1, 2)
       v = v.view(B, T, self.H, self.hd).transpose(1, 2)
       q, okay = apply_rope(q, okay, cos, sin)
       att = (q @ okay.transpose(-2, -1)) / math.sqrt(self.hd)
       att = att.masked_fill(masks, float("-inf")).softmax(-1)
       o = (att @ v).transpose(1, 2).reshape(B, T, D)
       return self.proj(o)
class Skilled(nn.Module):
   """A per-modality SwiGLU feed-forward 'transformer professional'."""
   def __init__(self, d, mult):
       tremendous().__init__(); h = d * mult
       self.w1 = nn.Linear(d, h, bias=False)
       self.w3 = nn.Linear(d, h, bias=False)
       self.w2 = nn.Linear(h, d, bias=False)
   def ahead(self, x):
       return self.w2(F.silu(self.w1(x)) * self.w3(x))
class MoTBlock(nn.Module):
   """Shared consideration + Combination-of-Transformers (per-modality professional) routing."""
   def __init__(self, c: Cfg):
       tremendous().__init__()
       self.attn_norm = RMSNorm(c.d_model)
       self.attn      = Consideration(c)
       self.ffn_norm  = nn.ModuleList([RMSNorm(c.d_model) for _ in range(c.n_mod)])
       self.specialists   = nn.ModuleList([Expert(c.d_model, c.ffn_mult) for _ in range(c.n_mod)])
   def ahead(self, x, cos, sin, masks, mod_id):
       x = x + self.attn(self.attn_norm(x), cos, sin, masks)
       out = torch.zeros_like(x)
       for i, exp in enumerate(self.specialists):
           sel = (mod_id == i).view(1, -1, 1).to(x.dtype)
           out = out + sel * exp(self.ffn_norm[i](x))
       return x + out
class OmniMoT(nn.Module):
   def __init__(self, c: Cfg):
       tremendous().__init__(); self.c = c
       self.text_emb = nn.Embedding(c.text_vocab, c.d_model)
       self.vis_in   = nn.Linear(c.vis_dim, c.d_model)
       self.act_in   = nn.Linear(c.act_dim, c.d_model)
       self.mod_emb  = nn.Embedding(c.n_mod, c.d_model)
       self.blocks   = nn.ModuleList([MoTBlock(c) for _ in range(c.n_layer)])
       self.norm     = RMSNorm(c.d_model)
       self.text_head = nn.Linear(c.d_model, c.text_vocab, bias=False)
       self.vis_head  = nn.Linear(c.d_model, c.vis_dim,  bias=False)
       self.act_head  = nn.Linear(c.d_model, c.act_dim,  bias=False)
       ids = torch.cat([torch.zeros(c.Lt), torch.ones(c.Lv), torch.full((c.La,), 2)]).lengthy()
       self.register_buffer("mod_id", ids, persistent=False)
   def ahead(self, textual content, vis, act):
       c = self.c
       x = torch.cat([self.text_emb(text), self.vis_in(vis), self.act_in(act)], 1)
       x = x + self.mod_emb(self.mod_id)[None]
       B, T, D = x.form
       cos, sin = build_rope(T, D // c.n_head, x.machine)
       masks = torch.triu(torch.ones(T, T, dtype=torch.bool, machine=x.machine), 1)[None, None]
       for blk in self.blocks:
           x = blk(x, cos, sin, masks, self.mod_id)
       x = self.norm(x)
       ht = self.text_head(x[:, :c.Lt])
       hv = self.vis_head(x[:, c.Lt:c.Lt + c.Lv])
       ha = self.act_head(x[:, c.Lt + c.Lv:])
       return ht, hv, ha
mannequin = OmniMoT(cfg).to(DEVICE)
n_params = sum(p.numel() for p in mannequin.parameters())
print(f"Mannequin constructed: OmniMoT  |  {n_params/1e6:.2f}M params  |  {cfg.n_layer} MoT blocks "
     f"x {cfg.n_mod} specialists  |  machine={DEVICE}")
Tags: ColabFriendlyCosmosCosmosFrameworkDesigningMiniatureMixtureofTransformersModelsNvidiasOmnimodalTutorialworld
Admin

Admin

Next Post
Meta Is Disabling Cameras For Good Glass Modders Who Tamper With The Privateness Gentle

Meta Is Disabling Cameras For Good Glass Modders Who Tamper With The Privateness Gentle

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recommended.

How AI Coverage in South Africa Is Ruining Itself

How AI Coverage in South Africa Is Ruining Itself

April 30, 2026
Gemini 2.5: Updates to our household of pondering fashions

Gemini 2.5: Updates to our household of pondering fashions

June 17, 2025

Trending.

Backrooms director Kane Parsons explains the birds, the portals, and his sensible results

Backrooms director Kane Parsons explains the birds, the portals, and his sensible results

May 31, 2026
Nsfw Chatgpt Options – Examples I’ve Used

Nsfw Chatgpt Options – Examples I’ve Used

October 13, 2025
100 Most Costly Key phrases for Google Advertisements in 2026

100 Most Costly Key phrases for Google Advertisements in 2026

January 13, 2026
Cisco Catalyst SD-WAN Zero-Day CVE-2026-20245 Exploited to Acquire Root Entry

Cisco Catalyst SD-WAN Zero-Day CVE-2026-20245 Exploited to Acquire Root Entry

June 25, 2026
Resident Evil followers have adopted a Love & Deepspace character because the son of Leon S. Kennedy and one in every of his potential spouses

Resident Evil followers have adopted a Love & Deepspace character because the son of Leon S. Kennedy and one in every of his potential spouses

April 4, 2026

AimactGrow

Welcome to AimactGrow, your ultimate source for all things technology! Our mission is to provide insightful, up-to-date content on the latest advancements in technology, coding, gaming, digital marketing, SEO, cybersecurity, and artificial intelligence (AI).

Categories

  • AI
  • Coding
  • Cybersecurity
  • Digital marketing
  • Gaming
  • SEO
  • Technology

Recent News

Crucial WordPress Core Flaw Lets Nameless Hackers Achieve Distant Code Execution

Crucial WordPress Core Flaw Lets Nameless Hackers Achieve Distant Code Execution

July 18, 2026
HP fined 1.4 billion rupees for “cartelization” of ink cartridges, toner, PCs

HP fined 1.4 billion rupees for “cartelization” of ink cartridges, toner, PCs

July 18, 2026
  • About Us
  • Privacy Policy
  • Disclaimer
  • Contact Us

© 2025 https://blog.aimactgrow.com/ - All Rights Reserved

No Result
View All Result
  • Home
  • Technology
  • AI
  • SEO
  • Coding
  • Gaming
  • Cybersecurity
  • Digital marketing

© 2025 https://blog.aimactgrow.com/ - All Rights Reserved