Test Gemma 4 26B MoE - Multimodal #4

Open
opened 2026-04-02 18:57:59 +00:00 by timmy · 0 comments
Owner

Test Gemma 4 26B MoE - Multimodal

This issue tracks testing of vision capabilities using the Gemma 4 26B MoE model via the Hermes Profile.

Profile Location

~/.hermes/profiles/gemma4/

Test Script

#!/bin/bash
# test_gemma4_26b_multimodal.sh
# Multimodal/vision test for Gemma 4 26B MoE model

set -e

PROFILE_PATH="$HOME/.hermes/profiles/gemma4"
MODEL_NAME="gemma-4-26b-moe-it"

echo "Testing Gemma 4 26B MoE Multimodal Vision..."

# Load profile
source "$PROFILE_PATH/env"

# Test image description
hermes run --model "$MODEL_NAME" --image test_data/sample_image.jpg --prompt "Describe what you see in this image."

# Test OCR capability
hermes run --model "$MODEL_NAME" --image test_data/text_image.png --prompt "Extract all text from this image."

# Test visual reasoning
hermes run --model "$MODEL_NAME" --image test_data/chart.png --prompt "What trends do you observe in this chart?"

echo "Test completed successfully!"

Test Checklist

  • Profile loads correctly
  • Image description is accurate
  • OCR extracts text correctly
  • Visual reasoning works
  • Multiple image formats supported (jpg, png, webp)
  • MoE routing is efficient

Assignee

@timmy

## Test Gemma 4 26B MoE - Multimodal This issue tracks testing of vision capabilities using the Gemma 4 26B MoE model via the Hermes Profile. ### Profile Location ``` ~/.hermes/profiles/gemma4/ ``` ### Test Script ```bash #!/bin/bash # test_gemma4_26b_multimodal.sh # Multimodal/vision test for Gemma 4 26B MoE model set -e PROFILE_PATH="$HOME/.hermes/profiles/gemma4" MODEL_NAME="gemma-4-26b-moe-it" echo "Testing Gemma 4 26B MoE Multimodal Vision..." # Load profile source "$PROFILE_PATH/env" # Test image description hermes run --model "$MODEL_NAME" --image test_data/sample_image.jpg --prompt "Describe what you see in this image." # Test OCR capability hermes run --model "$MODEL_NAME" --image test_data/text_image.png --prompt "Extract all text from this image." # Test visual reasoning hermes run --model "$MODEL_NAME" --image test_data/chart.png --prompt "What trends do you observe in this chart?" echo "Test completed successfully!" ``` ### Test Checklist - [ ] Profile loads correctly - [ ] Image description is accurate - [ ] OCR extracts text correctly - [ ] Visual reasoning works - [ ] Multiple image formats supported (jpg, png, webp) - [ ] MoE routing is efficient ### Assignee @timmy
timmy self-assigned this 2026-04-02 18:57:59 +00:00
timmy added the agentgemma4testing labels 2026-04-02 18:58:10 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: timmy/harness#4