kyegomez / Gamba

Implementation of PyTorch: "GAMBA: MARRY GAUSSIAN SPLATTING WITH MAMBA FOR SINGLE-VIEW 3D RECONSTRUCTION"

Home Page:https://discord.gg/7VckQVxvKk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Multi-Modality

Gamba

Implementation of "GAMBA: MARRY GAUSSIAN SPLATTING WITH MAMBA FOR SINGLE-VIEW 3D RECONSTRUCTION" in PyToch.

Diagram

install

$ pip install gamba-torch

usage

import torch 
from gamba.main import Gamba


# Forward pass of the GambaDecoder module.
x = torch.randn(1, 1000, 512)

# Model
model = Gamba(
    dim=512,
    d_state=512,
    d_conv=512,
    n=16384,
    depth=3
)

# Out
out = model(x)
print(out)

License

MIT

Todo

  • Paper Link
  • Citation bibtex

About

Implementation of PyTorch: "GAMBA: MARRY GAUSSIAN SPLATTING WITH MAMBA FOR SINGLE-VIEW 3D RECONSTRUCTION"

https://discord.gg/7VckQVxvKk

License:MIT License


Languages

Language:Python 72.9%Language:Shell 18.3%Language:Makefile 8.8%