trieloff commited on
Commit
b35231e
·
verified ·
1 Parent(s): 74e6ccb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -33,7 +33,9 @@ const res = await kev.systemOne({
33
  |---|---|---|---|---|
34
  | `kev-0.8b` | `q8f32` | 0.82 GB | `Qwen/Qwen3.5-0.8B-Base` | `jaredpalmer/kev-0.8b@225679690cdd1de6fceb1258b1bddf61c493cee9` |
35
  | `kev-0.8b` | `q8` | 0.79 GB | `Qwen/Qwen3.5-0.8B-Base` | `jaredpalmer/kev-0.8b@225679690cdd1de6fceb1258b1bddf61c493cee9` |
 
36
  | `kev-4b` | `q8f32` | 4.67 GB | `Qwen/Qwen3.5-4B-Base` | `jaredpalmer/kev-4b@4bc64c6b4c4881148661ffb823ce21fcfdc79a0e` |
 
37
  | `kev-9b` | `q8f32` | 8.83 GB | `Qwen/Qwen3.5-9B-Base` | `jaredpalmer/kev-9b@442e597d71840506c326c8c2f5eedd42aeac7bbd` |
38
 
39
  Every bundle is int8 weights with fp32 activations, split into 32 MB files so any CDN or proxy can serve them.
@@ -43,10 +45,12 @@ the original fp32 PyTorch model on a fixture set.
43
  ## Provenance and licenses
44
 
45
  - Models and training: [jaredpalmer/kev](https://github.com/jaredpalmer/kev) (Apache-2.0). Source checkpoints:
46
- `jaredpalmer/kev-0.8b@225679690cdd1de6fceb1258b1bddf61c493cee9`, `jaredpalmer/kev-4b@4bc64c6b4c4881148661ffb823ce21fcfdc79a0e`, `jaredpalmer/kev-9b@442e597d71840506c326c8c2f5eedd42aeac7bbd`.
47
  - Base models: [Qwen3.5](https://huggingface.co/Qwen) (Apache-2.0).
48
  - Architecture described in [Jev's Architecture Unmasked](https://archerhume.com/posts/jevs-architecture-unmasked).
49
  The API shapes follow [TypeSafe's System One](https://docs.typesafe.ai/api); Jev is TypeSafe's hosted model and is
50
  not affiliated with this repo.
51
  - Conversion: LoRA merged in fp32, exported with the onnxruntime-genai model builder without the LM head, embeddings
52
  quantized to int8 per row. Details in the [kev.js README](https://github.com/ai-ecoverse/kev.js#readme).
 
 
 
33
  |---|---|---|---|---|
34
  | `kev-0.8b` | `q8f32` | 0.82 GB | `Qwen/Qwen3.5-0.8B-Base` | `jaredpalmer/kev-0.8b@225679690cdd1de6fceb1258b1bddf61c493cee9` |
35
  | `kev-0.8b` | `q8` | 0.79 GB | `Qwen/Qwen3.5-0.8B-Base` | `jaredpalmer/kev-0.8b@225679690cdd1de6fceb1258b1bddf61c493cee9` |
36
+ | `kev-0.8b-vision` | `q8f32` | 1.02 GB | `Qwen/Qwen3.5-0.8B-Base` | `jaredpalmer/kev-0.8b@225679690cdd1de6fceb1258b1bddf61c493cee9` |
37
  | `kev-4b` | `q8f32` | 4.67 GB | `Qwen/Qwen3.5-4B-Base` | `jaredpalmer/kev-4b@4bc64c6b4c4881148661ffb823ce21fcfdc79a0e` |
38
+ | `kev-4b-vision` | `q8f32` | 5.34 GB | `Qwen/Qwen3.5-4B-Base` | `jaredpalmer/kev-4b@4bc64c6b4c4881148661ffb823ce21fcfdc79a0e` |
39
  | `kev-9b` | `q8f32` | 8.83 GB | `Qwen/Qwen3.5-9B-Base` | `jaredpalmer/kev-9b@442e597d71840506c326c8c2f5eedd42aeac7bbd` |
40
 
41
  Every bundle is int8 weights with fp32 activations, split into 32 MB files so any CDN or proxy can serve them.
 
45
  ## Provenance and licenses
46
 
47
  - Models and training: [jaredpalmer/kev](https://github.com/jaredpalmer/kev) (Apache-2.0). Source checkpoints:
48
+ `jaredpalmer/kev-0.8b@225679690cdd1de6fceb1258b1bddf61c493cee9`, `jaredpalmer/kev-0.8b@225679690cdd1de6fceb1258b1bddf61c493cee9`, `jaredpalmer/kev-4b@4bc64c6b4c4881148661ffb823ce21fcfdc79a0e`, `jaredpalmer/kev-4b@4bc64c6b4c4881148661ffb823ce21fcfdc79a0e`, `jaredpalmer/kev-9b@442e597d71840506c326c8c2f5eedd42aeac7bbd`.
49
  - Base models: [Qwen3.5](https://huggingface.co/Qwen) (Apache-2.0).
50
  - Architecture described in [Jev's Architecture Unmasked](https://archerhume.com/posts/jevs-architecture-unmasked).
51
  The API shapes follow [TypeSafe's System One](https://docs.typesafe.ai/api); Jev is TypeSafe's hosted model and is
52
  not affiliated with this repo.
53
  - Conversion: LoRA merged in fp32, exported with the onnxruntime-genai model builder without the LM head, embeddings
54
  quantized to int8 per row. Details in the [kev.js README](https://github.com/ai-ecoverse/kev.js#readme).
55
+ - `-vision` folders: the same decoder with an `image_embeds` input, plus the base model's own Qwen3.5 vision tower and
56
+ patch merger (fp16 weights), unmodified and not trained with Kev. Accuracy on images is in the kev.js README.