Text Generation
Transformers
Safetensors
English
qwen3
nexora
chat
conversational
text-generation-inference
Instructions to use ArkAiLab-Adl/nexora-vector-v0.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ArkAiLab-Adl/nexora-vector-v0.1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ArkAiLab-Adl/nexora-vector-v0.1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ArkAiLab-Adl/nexora-vector-v0.1") model = AutoModelForCausalLM.from_pretrained("ArkAiLab-Adl/nexora-vector-v0.1", 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 ArkAiLab-Adl/nexora-vector-v0.1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ArkAiLab-Adl/nexora-vector-v0.1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ArkAiLab-Adl/nexora-vector-v0.1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ArkAiLab-Adl/nexora-vector-v0.1
- SGLang
How to use ArkAiLab-Adl/nexora-vector-v0.1 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 "ArkAiLab-Adl/nexora-vector-v0.1" \ --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": "ArkAiLab-Adl/nexora-vector-v0.1", "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 "ArkAiLab-Adl/nexora-vector-v0.1" \ --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": "ArkAiLab-Adl/nexora-vector-v0.1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use ArkAiLab-Adl/nexora-vector-v0.1 with Docker Model Runner:
docker model run hf.co/ArkAiLab-Adl/nexora-vector-v0.1
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,7 +12,6 @@ language:
|
|
| 12 |
pipeline_tag: text-generation
|
| 13 |
library_name: transformers
|
| 14 |
---
|
| 15 |
-
|
| 16 |
<p align="center">
|
| 17 |
<img src="https://huggingface.co/ArkAiLab-Adl/nexora-vector-v0.1/resolve/main/assets/nexora-vector.png" alt="Nexora-Vector"/>
|
| 18 |
</p>
|
|
@@ -22,7 +21,7 @@ library_name: transformers
|
|
| 22 |
<p align="center">
|
| 23 |
<img src="https://img.shields.io/badge/status-beta-orange" alt="Status: Beta"/>
|
| 24 |
<img src="https://img.shields.io/badge/license-Apache%202.0-blue" alt="License: Apache 2.0"/>
|
| 25 |
-
<img src="https://img.shields.io/badge/base_model-
|
| 26 |
<img src="https://img.shields.io/badge/output-SVG-green" alt="Output: SVG"/>
|
| 27 |
</p>
|
| 28 |
|
|
@@ -48,7 +47,7 @@ Users are advised to **re-download the latest version** to ensure correct behavi
|
|
| 48 |
- [Intended Use](#intended-use)
|
| 49 |
- [Architecture & Training](#architecture--training)
|
| 50 |
- [Usage Recommendations](#usage-recommendations)
|
| 51 |
-
- [
|
| 52 |
- [Evaluation](#evaluation)
|
| 53 |
- [Risks & Considerations](#risks--considerations)
|
| 54 |
- [Future Work](#future-work)
|
|
@@ -66,19 +65,6 @@ This release is in **beta** and is scoped to research, experimentation, and earl
|
|
| 66 |
|
| 67 |
---
|
| 68 |
|
| 69 |
-
### Training Configuration
|
| 70 |
-
|
| 71 |
-
| Parameter | Details |
|
| 72 |
-
|---|---|
|
| 73 |
-
| **Fine-tuning Method** | Supervised Fine-Tuning (SFT) |
|
| 74 |
-
| **Dataset Composition** | Curated prompt–SVG pairs |
|
| 75 |
-
| **Dataset Size** | ~1,500 samples |
|
| 76 |
-
| **Training Objective** | Structured output generation for SVG formats |
|
| 77 |
-
|
| 78 |
-
> **Note:** The relatively small dataset size may result in instability and limited generalization across diverse prompts. Improved dataset coverage is planned for future versions.
|
| 79 |
-
|
| 80 |
-
---
|
| 81 |
-
|
| 82 |
## Capabilities
|
| 83 |
|
| 84 |
Nexora-Vector-v0.1 is designed to translate textual instructions into structured SVG code. The model is best suited for:
|
|
@@ -150,11 +136,17 @@ To get the best results from Nexora-Vector-v0.1:
|
|
| 150 |
|
| 151 |
---
|
| 152 |
|
| 153 |
-
##
|
|
|
|
|
|
|
| 154 |
|
| 155 |
-
|
|
|
|
|
|
|
|
|
|
| 156 |
|
| 157 |
-
|
|
|
|
| 158 |
|
| 159 |
---
|
| 160 |
|
|
@@ -222,4 +214,4 @@ Nexora-Vector-v0.1 is built upon **[Qwen3-4B](https://huggingface.co/Qwen/Qwen3-
|
|
| 222 |
|
| 223 |
## About Nexora
|
| 224 |
|
| 225 |
-
**Nexora** is an experimental AI initiative focused on building lightweight, practical, and creative AI systems for real-world applications. The Nexora Vector series represents our exploration into AI-assisted vector graphics generation.
|
|
|
|
| 12 |
pipeline_tag: text-generation
|
| 13 |
library_name: transformers
|
| 14 |
---
|
|
|
|
| 15 |
<p align="center">
|
| 16 |
<img src="https://huggingface.co/ArkAiLab-Adl/nexora-vector-v0.1/resolve/main/assets/nexora-vector.png" alt="Nexora-Vector"/>
|
| 17 |
</p>
|
|
|
|
| 21 |
<p align="center">
|
| 22 |
<img src="https://img.shields.io/badge/status-beta-orange" alt="Status: Beta"/>
|
| 23 |
<img src="https://img.shields.io/badge/license-Apache%202.0-blue" alt="License: Apache 2.0"/>
|
| 24 |
+
<img src="https://img.shields.io/badge/base_model-Qwen3--4B-blueviolet" alt="Base Model"/>
|
| 25 |
<img src="https://img.shields.io/badge/output-SVG-green" alt="Output: SVG"/>
|
| 26 |
</p>
|
| 27 |
|
|
|
|
| 47 |
- [Intended Use](#intended-use)
|
| 48 |
- [Architecture & Training](#architecture--training)
|
| 49 |
- [Usage Recommendations](#usage-recommendations)
|
| 50 |
+
- [Quantized Versions](#quantized-versions)
|
| 51 |
- [Evaluation](#evaluation)
|
| 52 |
- [Risks & Considerations](#risks--considerations)
|
| 53 |
- [Future Work](#future-work)
|
|
|
|
| 65 |
|
| 66 |
---
|
| 67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
## Capabilities
|
| 69 |
|
| 70 |
Nexora-Vector-v0.1 is designed to translate textual instructions into structured SVG code. The model is best suited for:
|
|
|
|
| 136 |
|
| 137 |
---
|
| 138 |
|
| 139 |
+
## Quantized Versions
|
| 140 |
+
|
| 141 |
+
Official quantized releases are available via **[Open4bits](https://huggingface.co/Open4bits)** — the dedicated quantization project under **ArkAiLabs** — for efficient local inference across different hardware platforms:
|
| 142 |
|
| 143 |
+
| Version | Format | Link |
|
| 144 |
+
|---|---|---|
|
| 145 |
+
| **GGUF** (Q2_K / Q4_K_M / Q6_K / Q8_0) | GGUF | [Open4bits/nexora-vector-v0.1-GGUF](https://huggingface.co/Open4bits/nexora-vector-v0.1-GGUF) |
|
| 146 |
+
| **MLX 4-Bit** (Apple Silicon) | MLX | [Open4bits/nexora-vector-v0.1-mlx-4Bit](https://huggingface.co/Open4bits/nexora-vector-v0.1-mlx-4Bit) |
|
| 147 |
|
| 148 |
+
- Use the **GGUF** version for local inference on Windows, Linux, or macOS with tools like `llama.cpp`, Ollama, or LM Studio.
|
| 149 |
+
- Use the **MLX** version for optimized inference on Apple Silicon (M1/M2/M3/M4) via the MLX framework.
|
| 150 |
|
| 151 |
---
|
| 152 |
|
|
|
|
| 214 |
|
| 215 |
## About Nexora
|
| 216 |
|
| 217 |
+
**Nexora** is an experimental AI initiative under **ArkAiLabs**, focused on building lightweight, practical, and creative AI systems for real-world applications. The Nexora Vector series represents our exploration into AI-assisted vector graphics generation.
|