RthItalia commited on
Commit
75ee6dd
·
verified ·
1 Parent(s): ddaa4ab

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -6
README.md CHANGED
@@ -47,16 +47,19 @@ Unlike Traditional Transformers, ZetaGrid uses a **Gated Causal TCN backbone** w
47
  ## 🚀 Usage (Inference)
48
 
49
  ### Prerequisites
50
- You need the `cpu_da` framework or the Python inference script.
51
 
52
  ```bash
53
  # Clone the repo
54
- git clone https://github.com/rth-italia/cpu-da
55
- cd cpu-da
56
  ```
57
 
58
  ### Running the Model (Python)
59
- Ensure you have `zeta25b_step15000.pt` (Weights) and `zetagrid_25b_production.npy` (Genome).
 
 
 
60
 
61
  ```python
62
  import torch
@@ -71,7 +74,7 @@ print(text)
71
  ```
72
 
73
  ### QULP 2-bit Inference (Ultra-Low Memory)
74
- To run on consumer CPUs with <2GB RAM:
75
 
76
  ```bash
77
  python QULP_INFERENCE.py --model zeta25b_2bit.qulp
@@ -100,5 +103,5 @@ ZetaGrid is **NOT** a Transformer. It is a TCN-based organism.
100
 
101
  ## 📜 License
102
  CC BY-NC 4.0 (Creative Commons Non-Commercial) for Research.
103
- **Commercial Use:** Requires a license from **RTH Italia** (Cpu-DA Project).
104
  For inquiries: info@rthitalia.com
 
47
  ## 🚀 Usage (Inference)
48
 
49
  ### Prerequisites
50
+ Use the ZetaGrid reference repository and download the model artifacts from this Hugging Face repository.
51
 
52
  ```bash
53
  # Clone the repo
54
+ git clone https://github.com/rthgit/ZetaGrid
55
+ cd ZetaGrid
56
  ```
57
 
58
  ### Running the Model (Python)
59
+ Place the required artifacts in the working directory, or update the paths in the script:
60
+
61
+ - `zeta25b_step15000.pt` - Soul/checkpoint weights
62
+ - `zetagrid_25b_production.npy` - Genome weight bank
63
 
64
  ```python
65
  import torch
 
74
  ```
75
 
76
  ### QULP 2-bit Inference (Ultra-Low Memory)
77
+ If using the QULP artifact, download `zeta25b_2bit.qulp` from the model repository and run the matching local inference script when available:
78
 
79
  ```bash
80
  python QULP_INFERENCE.py --model zeta25b_2bit.qulp
 
103
 
104
  ## 📜 License
105
  CC BY-NC 4.0 (Creative Commons Non-Commercial) for Research.
106
+ **Commercial Use:** Requires a license from **RTH Italia**.
107
  For inquiries: info@rthitalia.com