Text Generation
Transformers
Safetensors
mistral
Merge
4-bit precision
AWQ
text-generation-inference
awq
Instructions to use solidrust/BeagleCatMunin-AWQ with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use solidrust/BeagleCatMunin-AWQ with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="solidrust/BeagleCatMunin-AWQ")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("solidrust/BeagleCatMunin-AWQ") model = AutoModelForCausalLM.from_pretrained("solidrust/BeagleCatMunin-AWQ") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use solidrust/BeagleCatMunin-AWQ with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "solidrust/BeagleCatMunin-AWQ" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "solidrust/BeagleCatMunin-AWQ", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/solidrust/BeagleCatMunin-AWQ
- SGLang
How to use solidrust/BeagleCatMunin-AWQ 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 "solidrust/BeagleCatMunin-AWQ" \ --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": "solidrust/BeagleCatMunin-AWQ", "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 "solidrust/BeagleCatMunin-AWQ" \ --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": "solidrust/BeagleCatMunin-AWQ", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use solidrust/BeagleCatMunin-AWQ with Docker Model Runner:
docker model run hf.co/solidrust/BeagleCatMunin-AWQ
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
library_name: transformers
|
|
|
|
| 3 |
tags:
|
|
|
|
| 4 |
- 4-bit
|
| 5 |
- AWQ
|
| 6 |
- text-generation
|
| 7 |
- autotrain_compatible
|
| 8 |
- endpoints_compatible
|
| 9 |
pipeline_tag: text-generation
|
|
|
|
|
|
|
|
|
|
| 10 |
inference: false
|
| 11 |
quantized_by: Suparious
|
| 12 |
---
|
|
@@ -15,7 +26,9 @@ quantized_by: Suparious
|
|
| 15 |
- Model creator: [timpal0l](https://huggingface.co/timpal0l)
|
| 16 |
- Original model: [BeagleCatMunin](https://huggingface.co/timpal0l/BeagleCatMunin)
|
| 17 |
|
|
|
|
| 18 |
|
|
|
|
| 19 |
|
| 20 |
## How to use
|
| 21 |
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- sv
|
| 4 |
+
- da
|
| 5 |
+
- 'no'
|
| 6 |
+
- is
|
| 7 |
+
- en
|
| 8 |
library_name: transformers
|
| 9 |
+
license: apache-2.0
|
| 10 |
tags:
|
| 11 |
+
- merge
|
| 12 |
- 4-bit
|
| 13 |
- AWQ
|
| 14 |
- text-generation
|
| 15 |
- autotrain_compatible
|
| 16 |
- endpoints_compatible
|
| 17 |
pipeline_tag: text-generation
|
| 18 |
+
base_model:
|
| 19 |
+
- timpal0l/Mistral-7B-v0.1-flashback-v2
|
| 20 |
+
- RJuro/munin-neuralbeagle-7b-GGUF
|
| 21 |
inference: false
|
| 22 |
quantized_by: Suparious
|
| 23 |
---
|
|
|
|
| 26 |
- Model creator: [timpal0l](https://huggingface.co/timpal0l)
|
| 27 |
- Original model: [BeagleCatMunin](https://huggingface.co/timpal0l/BeagleCatMunin)
|
| 28 |
|
| 29 |
+

|
| 30 |
|
| 31 |
+
This model is a merge of [timpal0l/Mistral-7B-v0.1-flashback-v2](https://huggingface.co/timpal0l/Mistral-7B-v0.1-flashback-v2) and [RJuro/munin-neuralbeagle-7b](https://huggingface.co/RJuro/munin-neuralbeagle-7b).
|
| 32 |
|
| 33 |
## How to use
|
| 34 |
|