Text Generation
Transformers
Safetensors
English
Indonesian
qwen3
conversational
text-generation-inference
Instructions to use ZarfixAI/ZarfixAICerdas1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ZarfixAI/ZarfixAICerdas1.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ZarfixAI/ZarfixAICerdas1.0") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ZarfixAI/ZarfixAICerdas1.0") model = AutoModelForCausalLM.from_pretrained("ZarfixAI/ZarfixAICerdas1.0", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ZarfixAI/ZarfixAICerdas1.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ZarfixAI/ZarfixAICerdas1.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZarfixAI/ZarfixAICerdas1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ZarfixAI/ZarfixAICerdas1.0
- SGLang
How to use ZarfixAI/ZarfixAICerdas1.0 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ZarfixAI/ZarfixAICerdas1.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZarfixAI/ZarfixAICerdas1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ZarfixAI/ZarfixAICerdas1.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZarfixAI/ZarfixAICerdas1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use ZarfixAI/ZarfixAICerdas1.0 with Docker Model Runner:
docker model run hf.co/ZarfixAI/ZarfixAICerdas1.0
Update README.md
Browse filesUpdate keterangan
README.md
CHANGED
|
@@ -1,18 +1,65 @@
|
|
| 1 |
|
| 2 |
-
#
|
| 3 |
-
**Summary:**
|
|
|
|
|
|
|
| 4 |
|
| 5 |
-
>
|
| 6 |
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
```python
|
| 9 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
|