noffy commited on
Commit
4f2644c
·
verified ·
1 Parent(s): 049cf03

feat: release Haste Jev 2M (Small) weights and quantized formats

Browse files
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ library_name: transformers
5
+ license: apache-2.0
6
+ pipeline_tag: feature-extraction
7
+ tags:
8
+ - jev
9
+ - hastejev
10
+ - hastejev-2m
11
+ - decision-engine
12
+ - system-1
13
+ - pica
14
+ - zero-bias
15
+ - low-latency
16
+ - non-generative
17
+ - autonomous-agents
18
+ - browser-control
19
+ - web-automation
20
+ - agentic-ai
21
+ - fast-inference
22
+ - decision-making
23
+ - calibration
24
+ - safetensors
25
+ - pytorch
26
+ - quantized
27
+ - int8
28
+ - int4
29
+ - fp16
30
+ ---
31
+
32
+ # ⚡ Haste Jev 2M (Small) (~1.8M Parameters)
33
+
34
+ [![Hugging Face Model](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-noffy%2Fhastejev-2m-yellow)](https://huggingface.co/noffy/hastejev-2m)
35
+ [![GitHub Repository](https://img.shields.io/badge/GitHub-racstan%2Fhastejev-black?logo=github)](https://github.com/racstan/hastejev)
36
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
37
+ [![Parameters](https://img.shields.io/badge/Parameters-~1.8M-brightgreen.svg)]()
38
+ [![Memory](https://img.shields.io/badge/RAM_Footprint-~7_MB-purple.svg)]()
39
+
40
+ > **Haste Jev 2M (Small)** is part of the **Haste Jev** family of open-weights, zero-bias **System-1 Decision Engines**. Real-time decision kernel for autonomous browser control, robotic automation, and interactive UI agents.
41
+
42
+ ---
43
+
44
+ ## 🔬 Model Specifications
45
+
46
+ - **Total Parameters**: 1,826,275 (~1.8M)
47
+ - **Trainable Parameters**: 1,416,675
48
+ - **Buffer / Projection Table**: 409,600
49
+ - **Hidden Dimension ($d_{\text{model}}$)**: 160
50
+ - **Transformer Layers**: 4
51
+ - **Attention Heads**: 4
52
+ - **Target Deployment**: Browser automation & bots
53
+ - **Quantization Formats Available**: `FP32`, `FP16` (`model_fp16.safetensors`), `INT8` (`model_int8.safetensors`), `INT4` (`model_int4.safetensors`)
54
+
55
+ ---
56
+
57
+ ## ⚡ Quickstart
58
+
59
+ ```python
60
+ from hastejev import HasteJevEngine
61
+
62
+ # 1. Load standard weights directly from Hugging Face Hub
63
+ engine = HasteJevEngine.from_pretrained("noffy/hastejev-2m")
64
+
65
+ # 2. Or load with INT8 / INT4 quantization
66
+ engine_int8 = HasteJevEngine.from_pretrained("noffy/hastejev-2m", quantization="int8")
67
+
68
+ # 3. Execute Decision Primitives
69
+ state = "Account balance is $14,850.50 with pending transaction of $3,200.00."
70
+ options = ["Approve Transaction", "Flag for Review", "Decline"]
71
+
72
+ res = engine.choice(state, options)
73
+ print(f"Decision: {res.decision} (Confidence: {res.confidence:.3f})")
74
+ ```
75
+
76
+ ---
77
+
78
+ ## 📊 Complete Haste Jev Model Family
79
+
80
+ | Model | Parameters | Hidden Dim | Layers | Heads | RAM (FP32) | RAM (INT8) | Target Use Case |
81
+ | :--- | :---: | :---: | :---: | :---: | :---: | :---: | :--- |
82
+ | [`hastejev-100k`](https://huggingface.co/noffy/hastejev-100k) | **~98k** | 48 | 2 | 2 | ~0.4 MB | ~0.1 MB | Microcontrollers, WASM, IoT |
83
+ | [`hastejev-500k`](https://huggingface.co/noffy/hastejev-500k) | **~500k** | 96 | 3 | 4 | ~2.0 MB | ~0.5 MB | Mobile CPU, in-browser workers |
84
+ | [`hastejev-1m`](https://huggingface.co/noffy/hastejev-1m) | **~1.1M** | 128 | 4 | 4 | ~4.4 MB | ~1.1 MB | High-throughput API sidecars |
85
+ | [`hastejev-2m`](https://huggingface.co/noffy/hastejev-2m) | **~1.8M** | 160 | 4 | 4 | ~7.3 MB | ~1.8 MB | Browser automation & bots |
86
+ | [`hastejev-5m`](https://huggingface.co/noffy/hastejev-5m) | **~5.0M** | 224 | 5 | 4 | ~20.0 MB | ~5.0 MB | Financial & KYC routing |
87
+ | [`hastejev-10m`](https://huggingface.co/noffy/hastejev-10m) | **~10.0M** | 320 | 5 | 4 | ~40.0 MB | ~10.0 MB | Multimodal agent kernels |
88
+ | [`hastejev-20m`](https://huggingface.co/noffy/hastejev) | **~20.4M** | 256 | 4 | 4 | ~81.5 MB | ~20.4 MB | Enterprise decision engine |
89
+
90
+ ---
91
+
92
+ ## 📄 License
93
+ Apache License 2.0.
config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "HasteJevEngine"
4
+ ],
5
+ "model_type": "hastejev",
6
+ "preset_name": "2m",
7
+ "d_model": 160,
8
+ "n_layers": 4,
9
+ "n_heads": 4,
10
+ "d_ff": 640,
11
+ "table_size": 2560,
12
+ "num_frequencies": 32,
13
+ "vocab_size": 30522,
14
+ "calibrator_temperature": 1.0,
15
+ "torch_dtype": "float32",
16
+ "quantization": "int4",
17
+ "hastejev_version": "1.1.0"
18
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dfdb2a0df79592c9e82a25de036613a0e8a85eb0fb16ae11006a53aebdddd68
3
+ size 7312956
model_fp16.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea2423fcf8058c6fe17f79ae21207ff23e18dcec2de4f1d7f83a9e5e6058b861
3
+ size 3660374
model_int4.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dfdb2a0df79592c9e82a25de036613a0e8a85eb0fb16ae11006a53aebdddd68
3
+ size 7312956
model_int8.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f38a75f3b2dff1f36199ba7bbbbb538e4c675c41372b965bd29d96273889f241
3
+ size 7312956
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35056f4474469815769464bf2813ed621e420de7eb3c652aca03f85c1631ace2
3
+ size 7329643