kgrabko commited on
Commit
d4cd638
·
verified ·
1 Parent(s): e54837c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ viewer: true
3
+ license: other
4
+ license_name: cms-manhattan-jirack-v1.2
5
+ license_link: LICENSE
6
+ language:
7
+ - en
8
+ tags:
9
+ - llama
10
+
11
+ pipeline_tag: text-generation
12
+ ---
13
+
14
+ # 💎 JiRack Boooks dataset for 1.5B model
15
+
16
+ **Dataset:** the dataset formated for JiRack tokenizer . I recommend initializing the model with a 4K context window for initial stability, followed by scaling to 8K context using specialized JiRack 8K datasets. This two-stage approach ensures robust positional encoding before extending the model's long-range dependency.
17
+
18
+ **Time:** JiRack 1.5B: High-Efficiency Financial Modeling
19
+ - We are training a compact 1.5B parameter model on an extensive 11 billion token corpus. By training on a token-to-parameter ratio of nearly 7:1, we achieve exceptional knowledge density and reasoning capabilities in a lightweight architecture.
20
+ - Performance: JiRack Ternary Pro 1.5b about 14–18 hours per epoch on NVIDIA BlackWell 96 Gb VRAM
21
+ - Performance: JiRack Ternary Pro 10b about 4-5 days per epoch on NVIDIA BlackWell 96 Gb VRAM
22
+ - Optimization: Optimized for secure, low-latency banking applications.
23
+
24
+ **Inventor:** Konstantin Vladimirovich Grabko
25
+ **Organization:** CMS Manhattan JiRack Technology
26
+ **Official Site:** [www.cmsmanhattan.com](http://www.cmsmanhattan.com)
27
+
28
+
29
+ Designed for Banking and Fintech Institutions
30
+
31
+ **Banks and Fintech** Build secure, internal models tailored for the banking sector. We provide end-to-end solutions to pre-train models for fraud prevention, spam filtering, risk assessment, and Anti-Money Laundering (AML) detectio
32
+ - This is the base checkpoint, evaluated prior to fine-tuning on domain-specific datasets. The primary objective is to validate RoPE (Rotary Positional Embeddings) stability and coherence following the initial pre-training phase.
33
+
34
+
35
+ ⚠️ **IMPORTANT NOTICE — PROPRIETARY TECHNOLOGY**
36
+
37
+ **Allowed:**
38
+ - Personal and non-commercial research use only
39
+
40
+ **Strictly Prohibited without a written commercial license:**
41
+ - Any commercial use (SaaS, mobile apps, edge devices, paid services, etc.)
42
+ - Creating and distributing derivative models for profit
43
+ - Removing or modifying any copyright or legal notices
44
+ - Patenting any part of this technology
45
+
46
+ Commercial users **must** obtain a signed license and pay **5% royalty** on net revenue.
47
+
48
+ Any unauthorized commercial use will be pursued legally under New York law.
49
+
50
+ Contact for commercial license: grabko@cmsmanhattan.com
51
+ There is fix price for FinTech
52
+
53
+ ## ⚠️ Finch tech AL solution
54
+
55
+ Custom AI Solutions with JiRack
56
+
57
+ - Deploy your own secure, high-performance model from scratch. I specialize in delivering the JiRack modern architecture on NVIDIA Clusters, fully optimized for your private datasets.
58
+ - Let's build your sovereign AI today. DM for inquiries.
59
+ - Please contact to CMS Manhttan for the solution
60
+
61
+
62
+ - # Tesr Tokenizer size !
63
+ (venv_ji) root@jirack2:# python -c '
64
+ from transformers import AutoTokenizer
65
+ tok = AutoTokenizer.from_pretrained("./jirack_code_tokenizer_fixed")
66
+ print("Vocab size:", len(tok))
67
+ print("pad_token_id:", tok.pad_token_id)
68
+ print("eos_token_id:", tok.eos_token_id)
69
+ '
70
+ - Vocab size: 128259
71
+ - pad_token_id: 128001
72
+ - eos_token_id: 128001