Update
Browse files
app.py
CHANGED
@@ -190,7 +190,7 @@ def create_app():
|
|
190 |
ex['license'],
|
191 |
]
|
192 |
for ex in all_examples
|
193 |
-
if ex['model'] in models.MODELS
|
194 |
],
|
195 |
inputs=[example_image, example_prompt, example_model, example_license],
|
196 |
)
|
|
|
190 |
ex['license'],
|
191 |
]
|
192 |
for ex in all_examples
|
193 |
+
# if ex['model'] in models.MODELS
|
194 |
],
|
195 |
inputs=[example_image, example_prompt, example_model, example_license],
|
196 |
)
|
models.py
CHANGED
@@ -30,11 +30,6 @@ MODELS_INFO = {
|
|
30 |
'text sequences on a mixture of downstream academic datasets. The models are available in float32, '
|
31 |
'bfloat16 and float16 format for research purposes only.'
|
32 |
),
|
33 |
-
'paligemma-3b-mix-448': (
|
34 |
-
'JAX/FLAX PaliGemma 3B weights, finetuned with 448x448 input images and 512 token input/output '
|
35 |
-
'text sequences on a mixture of downstream academic datasets. The models are available in float32, '
|
36 |
-
'bfloat16 and float16 format for research purposes only.'
|
37 |
-
),
|
38 |
}
|
39 |
|
40 |
MODELS_RES_SEQ = {
|
|
|
30 |
'text sequences on a mixture of downstream academic datasets. The models are available in float32, '
|
31 |
'bfloat16 and float16 format for research purposes only.'
|
32 |
),
|
|
|
|
|
|
|
|
|
|
|
33 |
}
|
34 |
|
35 |
MODELS_RES_SEQ = {
|