Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kyegomez/gamba

Implementation of PyTorch: "GAMBA: MARRY GAUSSIAN SPLATTING WITH MAMBA FOR SINGLE-VIEW 3D RECONSTRUCTION"
https://github.com/kyegomez/gamba

3d-ai ai artificial-intelligence dalle generative-ai mamba ml ssm stable-diffusion transformers

Last synced: 11 days ago
JSON representation

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

Awesome Lists containing this project

README

        

[![Multi-Modality](agorabanner.png)](https://discord.gg/qUtxnK2NMf)

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

![Diagram](diagram.png)

## install
`$ pip install gamba-torch`

## usage
```python
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