forked from EricLBuehler/mistral.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgemma3n.py
More file actions
37 lines (35 loc) · 1022 Bytes
/
gemma3n.py
File metadata and controls
37 lines (35 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from mistralrs import Runner, Which, ChatCompletionRequest, VisionArchitecture
runner = Runner(
which=Which.VisionPlain(
model_id="google/gemma-3n-E4B-it",
arch=VisionArchitecture.Gemma3n,
),
)
res = runner.send_chat_completion_request(
ChatCompletionRequest(
model="ignore",
messages=[
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {
"url": "https://upload.wikimedia.org/wikipedia/commons/f/fd/Pink_flower.jpg"
},
},
{
"type": "text",
"text": "Please describe this image.",
},
],
}
],
max_tokens=256,
presence_penalty=1.0,
top_p=0.1,
temperature=0.1,
)
)
print(res.choices[0].message.content)
print(res.usage)