nuradli8 commited on
Commit
19c2e5f
·
verified ·
1 Parent(s): d5e9350

Update README.md

Browse files

Update keterangan

Files changed (1) hide show
  1. README.md +60 -13
README.md CHANGED
@@ -1,18 +1,65 @@
1
 
2
- # ZarfixAICerdas1.0
3
- **Summary:** ZarfixAICerdas1.0 is a lightweight 4B parameter language model focused on fast, low-cost inference.
 
 
4
 
5
- > Derived from janhq/Jan-v1-4B. Original work is licensed under Apache-2.0 (see `LICENSE`).
6
 
7
- ## Quickstart
 
 
 
 
 
 
 
 
 
 
8
  ```python
9
  from transformers import AutoTokenizer, AutoModelForCausalLM
10
- tok = AutoTokenizer.from_pretrained("ZarfixAI/ZarfixAICerdas1.0")
11
- m = AutoModelForCausalLM.from_pretrained("ZarfixAI/ZarfixAICerdas1.0", device_map="auto")
12
- x = tok("You are a helpful assistant.", return_tensors="pt").to(m.device)
13
- y = m.generate(**x, max_new_tokens=128)
14
- print(tok.decode(y[0], skip_special_tokens=True))
15
- ```
16
-
17
- ## Acknowledgements
18
- Thanks to the authors of janhq/Jan-v1-4B.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
+ # ZarfixAI Cerdas 1.0
3
+ **Summary:**
4
+ ZarfixAI Cerdas 1.0 is a 4B parameter language model built for fast, efficient, and intelligent text generation.
5
+ Optimized for practical applications where cost, speed, and accuracy matter.
6
 
7
+ > Based on `janhq/Jan-v1-4B`. Original work is licensed under Apache-2.0 (see `LICENSE` in this repo).
8
 
9
+ ---
10
+
11
+ ## 🚀 Features
12
+ - **4B parameters** for a balance between performance and efficiency
13
+ - Supports **instruction-following** and **general conversation**
14
+ - Runs on consumer GPUs or cloud T4 instances for low-cost deployment
15
+ - Apache-2.0 license — flexible for commercial and personal projects
16
+
17
+ ---
18
+
19
+ ## 🛠️ Quickstart
20
  ```python
21
  from transformers import AutoTokenizer, AutoModelForCausalLM
22
+
23
+ model_id = "ZarfixAI/ZarfixAICerdas1.0"
24
+
25
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
26
+ model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
27
+
28
+ prompt = "Explain the importance of renewable energy in simple terms."
29
+ inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
30
+ outputs = model.generate(**inputs, max_new_tokens=256)
31
+
32
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
33
+ ````
34
+
35
+ ---
36
+
37
+ ## 💡 Recommended Use Cases
38
+
39
+ * Customer support bots
40
+ * Knowledge assistants
41
+ * Educational Q\&A
42
+ * Creative writing prompts
43
+ * Lightweight RAG (Retrieval-Augmented Generation) systems
44
+
45
+ ---
46
+
47
+ ## ⚠️ Limitations
48
+
49
+ * The model may produce inaccurate or biased outputs — always verify important information.
50
+ * Not fine-tuned for high-risk applications (medical, legal, financial advice).
51
+
52
+ ---
53
+
54
+ ## 📜 License
55
+
56
+ * Original model: `janhq/Jan-v1-4B` under Apache-2.0 license.
57
+ * ZarfixAI Cerdas 1.0: Derivative work under the same Apache-2.0 license.
58
+ * You are free to use, modify, and deploy, but must keep attribution to the original authors.
59
+
60
+ ---
61
+
62
+ ## 🙏 Acknowledgements
63
+
64
+ Special thanks to the developers of `janhq/Jan-v1-4B` for providing a strong open-source foundation.
65
+