zeekay commited on
Commit
573986a
·
verified ·
1 Parent(s): 33f26ff

Update model card: fix YAML tags, add zen/zenlm branding

Browse files
Files changed (1) hide show
  1. README.md +3 -23
README.md CHANGED
@@ -6,11 +6,10 @@ tags:
6
  - multimodal
7
  - vision
8
  - audio
9
- - omni
10
  - zen
11
  - zen3
12
- - zenlm
13
  - hanzo
 
14
  license: apache-2.0
15
  ---
16
 
@@ -26,30 +25,11 @@ license: apache-2.0
26
  | Context Length | 202K tokens |
27
  | Architecture | Zen MoDE (Mixture of Distilled Experts) |
28
  | Generation | Zen3 |
29
- | Modalities | Text, Image, Audio, Video |
30
-
31
- ## Usage
32
-
33
- ```python
34
- from transformers import AutoProcessor, AutoModelForCausalLM
35
- import torch
36
-
37
- processor = AutoProcessor.from_pretrained("zenlm/zen3-omni", trust_remote_code=True)
38
- model = AutoModelForCausalLM.from_pretrained(
39
- "zenlm/zen3-omni",
40
- torch_dtype=torch.bfloat16,
41
- device_map="auto",
42
- trust_remote_code=True,
43
- )
44
-
45
- messages = [{"role": "user", "content": "Describe this image and transcribe any audio."}]
46
- inputs = processor.apply_chat_template(messages, return_tensors="pt").to("cuda")
47
- outputs = model.generate(**inputs, max_new_tokens=512)
48
- print(processor.decode(outputs[0]))
49
- ```
50
 
51
  ## API Access
52
 
 
 
53
  ```python
54
  from openai import OpenAI
55
 
 
6
  - multimodal
7
  - vision
8
  - audio
 
9
  - zen
10
  - zen3
 
11
  - hanzo
12
+ - zenlm
13
  license: apache-2.0
14
  ---
15
 
 
25
  | Context Length | 202K tokens |
26
  | Architecture | Zen MoDE (Mixture of Distilled Experts) |
27
  | Generation | Zen3 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  ## API Access
30
 
31
+ This model is served exclusively via the Hanzo AI API. Weight downloads are not available for this model tier.
32
+
33
  ```python
34
  from openai import OpenAI
35