File size: 503 Bytes
9e6b7d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ORGANIZATION = 'google'

BASE_MODELS = [
    ('paligemma-3b-mix-224-jax', 'paligemma-3b-mix-224'),
    ('paligemma-3b-mix-448-jax', 'paligemma-3b-mix-448'),
]
MODELS = {
    **{
        model_name: (
            f'{ORGANIZATION}/{repo}',
            f'{model_name}.bf16.npz',
            'bfloat16',  # Model repo revision.
        )
        for repo, model_name in BASE_MODELS
    },
    'testPaligemma':('Jegree/myPaligem', 'fine-tuned-paligemma-3b-pt-224.f16.npz'),
}

print(MODELS)