Instructions to use Symbol-LLM/Symbol-LLM-13B-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Symbol-LLM/Symbol-LLM-13B-Instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Symbol-LLM/Symbol-LLM-13B-Instruct")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Symbol-LLM/Symbol-LLM-13B-Instruct") model = AutoModelForCausalLM.from_pretrained("Symbol-LLM/Symbol-LLM-13B-Instruct") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Symbol-LLM/Symbol-LLM-13B-Instruct with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Symbol-LLM/Symbol-LLM-13B-Instruct" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Symbol-LLM/Symbol-LLM-13B-Instruct", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Symbol-LLM/Symbol-LLM-13B-Instruct
- SGLang
How to use Symbol-LLM/Symbol-LLM-13B-Instruct 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 "Symbol-LLM/Symbol-LLM-13B-Instruct" \ --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": "Symbol-LLM/Symbol-LLM-13B-Instruct", "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 "Symbol-LLM/Symbol-LLM-13B-Instruct" \ --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": "Symbol-LLM/Symbol-LLM-13B-Instruct", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Symbol-LLM/Symbol-LLM-13B-Instruct with Docker Model Runner:
docker model run hf.co/Symbol-LLM/Symbol-LLM-13B-Instruct
Commit ·
5a93ea5
1
Parent(s): abf8aa1
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
## Symbol-LLM: Towards Foundational Symbol-centric Interface for Large Language Models
|
| 7 |
+
|
| 8 |
+
Paper Link: https://arxiv.org/abs/2311.09278
|
| 9 |
+
|
| 10 |
+
Project Page: https://xufangzhi.github.io/symbol-llm-page/
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
## Note
|
| 15 |
+
The work is under review.
|
| 16 |
+
|
| 17 |
+
We have made Symbol-LLM series models (7B / 13B) public.
|
| 18 |
+
|
| 19 |
+
The symbolic data collection will be public soon.
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
## Citation
|
| 23 |
+
If you find it helpful, please kindly cite the paper.
|
| 24 |
+
```
|
| 25 |
+
@article{xu2023symbol,
|
| 26 |
+
title={Symbol-LLM: Towards Foundational Symbol-centric Interface For Large Language Models},
|
| 27 |
+
author={Xu, Fangzhi and Wu, Zhiyong and Sun, Qiushi and Ren, Siyu and Yuan, Fei and Yuan, Shuai and Lin, Qika and Qiao, Yu and Liu, Jun},
|
| 28 |
+
journal={arXiv preprint arXiv:2311.09278},
|
| 29 |
+
year={2023}
|
| 30 |
+
}
|
| 31 |
+
```
|