mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-11 12:24:53 +00:00
fix: bump idefics3 tests and snapshots
This commit is contained in:
parent
53b2bea6b9
commit
34174af8c8
@ -1,73 +1,67 @@
|
||||
{
|
||||
"details": {
|
||||
"best_of_sequences": null,
|
||||
"finish_reason": "length",
|
||||
"generated_tokens": 10,
|
||||
"finish_reason": "eos_token",
|
||||
"generated_tokens": 9,
|
||||
"prefill": [],
|
||||
"seed": null,
|
||||
"tokens": [
|
||||
{
|
||||
"id": 578,
|
||||
"logprob": -0.2475586,
|
||||
"id": 2684,
|
||||
"logprob": -0.24902344,
|
||||
"special": false,
|
||||
"text": " The"
|
||||
"text": " There"
|
||||
},
|
||||
{
|
||||
"id": 2217,
|
||||
"logprob": -0.017303467,
|
||||
"id": 374,
|
||||
"logprob": -0.0703125,
|
||||
"special": false,
|
||||
"text": " image"
|
||||
},
|
||||
{
|
||||
"id": 62991,
|
||||
"logprob": -0.7368164,
|
||||
"special": false,
|
||||
"text": " depicts"
|
||||
},
|
||||
{
|
||||
"id": 279,
|
||||
"logprob": -0.39990234,
|
||||
"special": false,
|
||||
"text": " the"
|
||||
},
|
||||
{
|
||||
"id": 89675,
|
||||
"logprob": -0.34350586,
|
||||
"special": false,
|
||||
"text": " Statue"
|
||||
},
|
||||
{
|
||||
"id": 315,
|
||||
"logprob": -0.0002901554,
|
||||
"special": false,
|
||||
"text": " of"
|
||||
},
|
||||
{
|
||||
"id": 32492,
|
||||
"logprob": -0.0009598732,
|
||||
"special": false,
|
||||
"text": " Liberty"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"logprob": -0.2355957,
|
||||
"special": false,
|
||||
"text": ","
|
||||
"text": " is"
|
||||
},
|
||||
{
|
||||
"id": 264,
|
||||
"logprob": -0.66503906,
|
||||
"logprob": -0.23535156,
|
||||
"special": false,
|
||||
"text": " a"
|
||||
},
|
||||
{
|
||||
"id": 97937,
|
||||
"logprob": -0.9199219,
|
||||
"id": 35372,
|
||||
"logprob": -0.125,
|
||||
"special": false,
|
||||
"text": " colossal"
|
||||
"text": " statue"
|
||||
},
|
||||
{
|
||||
"id": 304,
|
||||
"logprob": -0.30273438,
|
||||
"special": false,
|
||||
"text": " in"
|
||||
},
|
||||
{
|
||||
"id": 279,
|
||||
"logprob": -0.20507812,
|
||||
"special": false,
|
||||
"text": " the"
|
||||
},
|
||||
{
|
||||
"id": 2217,
|
||||
"logprob": -0.076171875,
|
||||
"special": false,
|
||||
"text": " image"
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"logprob": -0.053710938,
|
||||
"special": false,
|
||||
"text": "."
|
||||
},
|
||||
{
|
||||
"id": 128258,
|
||||
"logprob": -0.011352539,
|
||||
"special": true,
|
||||
"text": "<end_of_utterance>"
|
||||
}
|
||||
],
|
||||
"top_tokens": null
|
||||
},
|
||||
"generated_text": " The image depicts the Statue of Liberty, a colossal"
|
||||
"generated_text": " There is a statue in the image."
|
||||
}
|
||||
|
@ -1,21 +1,9 @@
|
||||
import pytest
|
||||
import base64
|
||||
|
||||
|
||||
def get_chicken():
|
||||
with open("integration-tests/images/chicken_on_money.png", "rb") as image_file:
|
||||
encoded_string = base64.b64encode(image_file.read())
|
||||
return f"data:image/png;base64,{encoded_string.decode('utf-8')}"
|
||||
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
def flash_idefics3_next_handle(launcher):
|
||||
with launcher(
|
||||
"HuggingFaceM4/Idefics3-8B-Llama3",
|
||||
max_total_tokens=3000,
|
||||
max_batch_prefill_tokens=2501,
|
||||
max_input_tokens=2500,
|
||||
) as handle:
|
||||
with launcher("HuggingFaceM4/Idefics3-8B-Llama3") as handle:
|
||||
yield handle
|
||||
|
||||
|
||||
@ -25,26 +13,6 @@ async def flash_idefics3_next(flash_idefics3_next_handle):
|
||||
return flash_idefics3_next_handle.client
|
||||
|
||||
|
||||
# TODO: dont skip when token issue is resolved
|
||||
@pytest.mark.skip
|
||||
@pytest.mark.asyncio
|
||||
@pytest.mark.private
|
||||
async def test_flash_idefics3_next_simple_base64(
|
||||
flash_idefics3_next, response_snapshot
|
||||
):
|
||||
chicken = get_chicken()
|
||||
query = "Write me a short story"
|
||||
response = await flash_idefics3_next.generate(
|
||||
f"<|begin_of_text|><|begin_of_text|>User:{query}<end_of_utterance>\nAssistant:",
|
||||
max_new_tokens=10,
|
||||
)
|
||||
assert (
|
||||
response.generated_text == " A chicken is sitting on a pile of money."
|
||||
), f"{repr(response.generated_text)}"
|
||||
# assert response.details.generated_tokens == 10
|
||||
# assert response == response_snapshot
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
@pytest.mark.private
|
||||
async def test_flash_idefics3_next_simple_url(flash_idefics3_next, response_snapshot):
|
||||
@ -57,8 +25,7 @@ async def test_flash_idefics3_next_simple_url(flash_idefics3_next, response_snap
|
||||
)
|
||||
print(response)
|
||||
assert (
|
||||
response.generated_text
|
||||
== " The image depicts the Statue of Liberty, a colossal"
|
||||
response.generated_text == " There is a statue in the image."
|
||||
), f"{repr(response.generated_text)}"
|
||||
assert response.details.generated_tokens == 10
|
||||
assert response.details.generated_tokens == 9
|
||||
assert response == response_snapshot
|
||||
|
Loading…
Reference in New Issue
Block a user