Project structure of: kyegomez/Gemini
example.py
Python model optimized, text-image inputs, outputs text sequence.__init__.py
Imports and adds to all list.model.py
Transformer, Gemini models, multi-layer, concatenationtokenizer.py
Multimodal SentencePiece tokenizer with modality, BOS, and EOS.transformer.py
Transformer model with customizable layers and dropoututils.py
Embeddings from Images and Audio.
pyproject.toml
PyProject config: Poetry, Gemini-Torch, Python 3.9README.md
Multimodal transformer model for text/image generationrequirements.txt
Python packages: zetascale, torch, einops, pytest, sentencepiece.test_audio_embedder.py
Test audio embedding function's behavior and output integrity.test_gemini.py
Gemini model test functions: parameters, forward pass, error handling.test_img_encoder.py
Tests ImageToTextEmbeddings model initialization and output shape.test_img_to_transformer.py
ImageToTextEmbeddings initialization and forward pass demonstrated.test_tokenizer.py
Test multi-modal sentence piece tokenizer functions.