Instructions to use Symbol-LLM/Symbol-LLM-7B-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Symbol-LLM/Symbol-LLM-7B-Instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Symbol-LLM/Symbol-LLM-7B-Instruct")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Symbol-LLM/Symbol-LLM-7B-Instruct") model = AutoModelForCausalLM.from_pretrained("Symbol-LLM/Symbol-LLM-7B-Instruct") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Symbol-LLM/Symbol-LLM-7B-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-7B-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-7B-Instruct", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Symbol-LLM/Symbol-LLM-7B-Instruct
- SGLang
How to use Symbol-LLM/Symbol-LLM-7B-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-7B-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-7B-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-7B-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-7B-Instruct", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Symbol-LLM/Symbol-LLM-7B-Instruct with Docker Model Runner:
docker model run hf.co/Symbol-LLM/Symbol-LLM-7B-Instruct
Add library name and pipeline tag
Browse filesThis PR adds metadata regarding the relevant pipeline tag and library name. It also adds a link to the code repository.
README.md
CHANGED
|
@@ -1,15 +1,16 @@
|
|
| 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 |
## 🔥 News
|
| 15 |
|
|
@@ -31,5 +32,4 @@ If you find it helpful, please kindly cite the paper.
|
|
| 31 |
journal={arXiv preprint arXiv:2311.09278},
|
| 32 |
year={2023}
|
| 33 |
}
|
| 34 |
-
```
|
| 35 |
-
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
library_name: transformers
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
---
|
| 6 |
|
|
|
|
| 7 |
## Symbol-LLM: Towards Foundational Symbol-centric Interface for Large Language Models
|
| 8 |
|
| 9 |
Paper Link: https://arxiv.org/abs/2311.09278
|
| 10 |
|
| 11 |
Project Page: https://xufangzhi.github.io/symbol-llm-page/
|
| 12 |
|
| 13 |
+
Code: https://github.com/xufangzhi/Genius
|
| 14 |
|
| 15 |
## 🔥 News
|
| 16 |
|
|
|
|
| 32 |
journal={arXiv preprint arXiv:2311.09278},
|
| 33 |
year={2023}
|
| 34 |
}
|
| 35 |
+
```
|
|
|