Text Generation
Transformers
English
uncensored
direct-answer
information-retrieval
general-knowledge
unfiltered
amoral-ai
exl3
Instructions to use ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3
- SGLang
How to use ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3 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 "ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3 with Docker Model Runner:
docker model run hf.co/ArtusDev/soob3123_GrayLine-Qwen3-8B-EXL3
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
| 2 |
base_model: soob3123/GrayLine-Qwen3-8B
|
| 3 |
base_model_relation: quantized
|
| 4 |
quantized_by: ArtusDev
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
## EXL3 Quants of soob3123/GrayLine-Qwen3-8B
|
|
|
|
| 2 |
base_model: soob3123/GrayLine-Qwen3-8B
|
| 3 |
base_model_relation: quantized
|
| 4 |
quantized_by: ArtusDev
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
+
library_name: transformers
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
tags:
|
| 10 |
+
- text-generation
|
| 11 |
+
- uncensored
|
| 12 |
+
- direct-answer
|
| 13 |
+
- information-retrieval
|
| 14 |
+
- general-knowledge
|
| 15 |
+
- unfiltered
|
| 16 |
+
- amoral-ai
|
| 17 |
+
- exl3
|
| 18 |
+
datasets:
|
| 19 |
+
- soob3123/GrayLine-QA
|
| 20 |
+
- soob3123/GrayLine-QA-Reasoning
|
| 21 |
+
license: apache-2.0
|
| 22 |
---
|
| 23 |
|
| 24 |
## EXL3 Quants of soob3123/GrayLine-Qwen3-8B
|