Gemini - Pytorch
Project description
Gemini
The open source implementation of Gemini, the model that will "eclipse ChatGPT", it seems to work by directly taking in all modalities without an encoder for some kind which means that the encoding is built into the modal.
input sequences {texts, audio, imgs, video} -> [tokens] -> transformer -> conditional decoding for img gen
This architecture looks very similiar to Fuyu's architecture just extended to many modalities, where instead of an vit encoder you just pass in the img embeddings into the transformer.
The token inputs to gemini will most likely be denoted by special modality tokens [IMG] or <img> or [AUDIO] or <audio>
Codi also has conditional generation leverages the tokenized outputs.
To implement this, I plan to cover the img embedding first make sure that works well and then go onto the audio embeddings and then the video.
Install
pip3 install gemini-torch
Usage
Gemini Transformer Usage
- No multi-modal yet
- Just language
- Rope, xpos, alibi, etc, multi grouped queries, qk_norm
import torch
from gemini_torch import Gemini
# Initialize the model
model = Gemini(
num_tokens=50432,
max_seq_len=8192,
dim=2560,
depth=32,
dim_head=128,
heads=24,
use_abs_pos_emb=False,
alibi_pos_bias=True,
alibi_num_heads=12,
rotary_xpos=True,
attn_flash=True,
attn_kv_heads=2,
qk_norm=True,
attn_qk_norm=True,
attn_qk_norm_dim_scale=True,
)
# Initialize the randint
x = torch.randint(0, 50432, (1, 8192))
# Apply model to y
y = model(x)
# Print logits
print(y)
Multi-Modal with Imgs
- Processes Img natively no encoders, we can definitely optimize this like Fuyu
import torch
from gemini_torch.model import Gemini
# Initialize model
model = Gemini(
num_tokens=50432,
max_seq_len=8192,
dim=2560,
depth=32,
dim_head=128,
heads=24,
use_abs_pos_emb=False,
alibi_pos_bias=True,
alibi_num_heads=12,
rotary_xpos=True,
attn_flash=True,
attn_kv_heads=2,
qk_norm=True,
attn_qk_norm=True,
attn_qk_norm_dim_scale=True,
)
# Text shape: [batch, seq_len, dim]
text = torch.randint(0, 50432, (1, 8192))
# Img shape: [batch, channels, height, width]
img = torch.randn(1, 3, 256, 256)
# Apply model to text and img
y = model(text, img)
# Output shape: [batch, seq_len, dim]
print(y.shape)
ImgToTransformer
- takes in img -> patches -> reshapes to [B, SEQLEN, Dim] to align with transformer
import torch
from gemini_torch.utils import ImgToTransformer
# Example usage
num_patches = 16
patch_size = 16
transformer_dim = 512
img_channels = 3
seq_len = 50000
reduced_dim = 256 # Reduced dimension after dimensionality reduction
model = ImgToTransformer(
num_patches, patch_size, transformer_dim, img_channels, seq_len, reduced_dim
)
# Dummy image input [BATCH, CHANNELS, HEIGHT, WIDTH]
dummy_img = torch.randn(1, 3, 64, 64) # Batch size of 1, 64x64 RGB image
# Forward pass
seq_space_output = model(dummy_img)
print(seq_space_output.shape) # Expected shape: [1, 50000, 256]
References
- Combine Reinforcment learning with modular pretrained transformer, multi-modal capabilities, image, audio,
- self improving mechanisms like robocat
- PPO? or MPO
- get good at backtracking and exploring alternative paths
- speculative decoding
- Algorithm of Thoughts
- RLHF
- Gemini Report
- Gemini Landing Page
Todo
- Implement the img feature embedder and align imgs with text and pass into transformer
- Implement the audio processing by making an audio processor that intakes in audio embeddings and reshapes it to match language embeddings dimension shape [B, SEQLEN, Dim]
- Do the same for video
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gemini_torch-0.0.3.tar.gz
.
File metadata
- Download URL: gemini_torch-0.0.3.tar.gz
- Upload date:
- Size: 20.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.11.0 Darwin/22.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 116440663946e38a3a0e853e5012768697cf5503cced2078ee70b628910ad95d |
|
MD5 | a19611f25218646009947d968a5e8185 |
|
BLAKE2b-256 | d1fb5846ef7622f1f75de82e950d0cd16dfe026ea0768670790c32f4b6fc6f07 |
File details
Details for the file gemini_torch-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: gemini_torch-0.0.3-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.11.0 Darwin/22.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b869f651c0257f31d634bfa0e54d9e5f670b2245a35d34afa42b20db7846208 |
|
MD5 | 14942dae0c2206ce042e8d798b168dc5 |
|
BLAKE2b-256 | e202cdc6c89da9e3496b387d974f438f1fe5cf252a4672030f9c8ec0a6fe75cb |