Instructions to use matchaaaaa/Honey-Yuzu-13B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use matchaaaaa/Honey-Yuzu-13B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="matchaaaaa/Honey-Yuzu-13B")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("matchaaaaa/Honey-Yuzu-13B") model = AutoModelForMultimodalLM.from_pretrained("matchaaaaa/Honey-Yuzu-13B") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use matchaaaaa/Honey-Yuzu-13B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "matchaaaaa/Honey-Yuzu-13B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "matchaaaaa/Honey-Yuzu-13B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/matchaaaaa/Honey-Yuzu-13B
- SGLang
How to use matchaaaaa/Honey-Yuzu-13B 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 "matchaaaaa/Honey-Yuzu-13B" \ --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": "matchaaaaa/Honey-Yuzu-13B", "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 "matchaaaaa/Honey-Yuzu-13B" \ --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": "matchaaaaa/Honey-Yuzu-13B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use matchaaaaa/Honey-Yuzu-13B with Docker Model Runner:
docker model run hf.co/matchaaaaa/Honey-Yuzu-13B
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,42 +1,42 @@
|
|
| 1 |
-
---
|
| 2 |
-
base_model: []
|
| 3 |
-
library_name: transformers
|
| 4 |
-
tags:
|
| 5 |
-
- mergekit
|
| 6 |
-
- merge
|
| 7 |
-
|
| 8 |
-
---
|
| 9 |
-
#
|
| 10 |
-
|
| 11 |
-
This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
|
| 12 |
-
|
| 13 |
-
## Merge Details
|
| 14 |
-
### Merge Method
|
| 15 |
-
|
| 16 |
-
This model was merged using the passthrough merge method.
|
| 17 |
-
|
| 18 |
-
### Models Merged
|
| 19 |
-
|
| 20 |
-
The following models were included in the merge:
|
| 21 |
-
* mega\splice
|
| 22 |
-
* D:/MLnonsense/models/senseable_WestLake-7B-v2
|
| 23 |
-
* mega\Chunky-Lemon-Cookie-11B
|
| 24 |
-
|
| 25 |
-
### Configuration
|
| 26 |
-
|
| 27 |
-
The following YAML configuration was used to produce this model:
|
| 28 |
-
|
| 29 |
-
```yaml
|
| 30 |
-
dtype: float32
|
| 31 |
-
merge_method: passthrough
|
| 32 |
-
slices:
|
| 33 |
-
- sources:
|
| 34 |
-
- layer_range: [0, 16]
|
| 35 |
-
model: D:/MLnonsense/models/senseable_WestLake-7B-v2
|
| 36 |
-
- sources:
|
| 37 |
-
- layer_range: [0, 8]
|
| 38 |
-
model: mega\splice
|
| 39 |
-
- sources:
|
| 40 |
-
- layer_range: [16, 48]
|
| 41 |
-
model: mega\Chunky-Lemon-Cookie-11B
|
| 42 |
-
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: []
|
| 3 |
+
library_name: transformers
|
| 4 |
+
tags:
|
| 5 |
+
- mergekit
|
| 6 |
+
- merge
|
| 7 |
+
|
| 8 |
+
---
|
| 9 |
+
# Honey-Yuzu-13B
|
| 10 |
+
|
| 11 |
+
This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
|
| 12 |
+
|
| 13 |
+
## Merge Details
|
| 14 |
+
### Merge Method
|
| 15 |
+
|
| 16 |
+
This model was merged using the passthrough merge method.
|
| 17 |
+
|
| 18 |
+
### Models Merged
|
| 19 |
+
|
| 20 |
+
The following models were included in the merge:
|
| 21 |
+
* mega\splice
|
| 22 |
+
* D:/MLnonsense/models/senseable_WestLake-7B-v2
|
| 23 |
+
* mega\Chunky-Lemon-Cookie-11B
|
| 24 |
+
|
| 25 |
+
### Configuration
|
| 26 |
+
|
| 27 |
+
The following YAML configuration was used to produce this model:
|
| 28 |
+
|
| 29 |
+
```yaml
|
| 30 |
+
dtype: float32
|
| 31 |
+
merge_method: passthrough
|
| 32 |
+
slices:
|
| 33 |
+
- sources:
|
| 34 |
+
- layer_range: [0, 16]
|
| 35 |
+
model: D:/MLnonsense/models/senseable_WestLake-7B-v2
|
| 36 |
+
- sources:
|
| 37 |
+
- layer_range: [0, 8]
|
| 38 |
+
model: mega\splice
|
| 39 |
+
- sources:
|
| 40 |
+
- layer_range: [16, 48]
|
| 41 |
+
model: mega\Chunky-Lemon-Cookie-11B
|
| 42 |
+
```
|