zeekay commited on
Commit
c05e077
·
verified ·
1 Parent(s): 51322ed

feat: initial release 2024-09-15

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ - zh
6
+ tags:
7
+ - zen
8
+ - zenlm
9
+ - hanzo-ai
10
+ - zen-3
11
+
12
+ pipeline_tag: text-generation
13
+ library_name: transformers
14
+ base_model: zenlm/zen-pro
15
+ ---
16
+
17
+ # Zen 3
18
+
19
+ > **Parameters**: 8B | **Context**: 32K | **License**: Apache 2.0 | **Released**: 2024-09-15
20
+
21
+ Zen 3 generation label. Weights at [zenlm/zen-pro](https://huggingface.co/zenlm/zen-pro).
22
+
23
+ The Zen 3 family (Q3–Q4 2024) introduced MoE sparse routing and extended the family to cover vision, audio, image generation, and multimodal reasoning.
24
+
25
+ ```python
26
+ from transformers import AutoModelForCausalLM, AutoTokenizer
27
+ # Weights are at the canonical repo:
28
+ model = AutoModelForCausalLM.from_pretrained("zenlm/zen-pro", torch_dtype="auto")
29
+ tokenizer = AutoTokenizer.from_pretrained("zenlm/zen-pro")
30
+ ```
31
+
32
+ ```bash
33
+ # Or via Ollama:
34
+ ollama run hf.co/zenlm/zen-pro
35
+ ```
36
+
37
+ ---
38
+ ## The Zen LM Family
39
+
40
+ Joint research collaboration:
41
+ - **Hanzo AI** (Techstars '17) — AI infrastructure, API gateway, inference optimization
42
+ - **Zoo Labs Foundation** (501c3) — Open AI research, ZIPs governance, decentralized training
43
+ - **Lux Partners Limited** — Compute coordination and settlement layer
44
+
45
+ All weights Apache 2.0. Download, run locally, fine-tune, deploy commercially.
46
+
47
+ [HuggingFace](https://huggingface.co/zenlm) · [Chat free](https://hanzo.chat) · [API](https://api.hanzo.ai) · [Docs](https://zenlm.org)