Text Generation
Transformers
Safetensors
PyTorch
English
mistral
mergekit
Merge
quantized
4-bit precision
AWQ
conversational
text-generation-inference
chatml
awq
Instructions to use solidrust/Mewthree-7B-AWQ with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use solidrust/Mewthree-7B-AWQ with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="solidrust/Mewthree-7B-AWQ") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("solidrust/Mewthree-7B-AWQ") model = AutoModelForMultimodalLM.from_pretrained("solidrust/Mewthree-7B-AWQ") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use solidrust/Mewthree-7B-AWQ with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "solidrust/Mewthree-7B-AWQ" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "solidrust/Mewthree-7B-AWQ", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/solidrust/Mewthree-7B-AWQ
- SGLang
How to use solidrust/Mewthree-7B-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/Mewthree-7B-AWQ" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "solidrust/Mewthree-7B-AWQ", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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/Mewthree-7B-AWQ" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "solidrust/Mewthree-7B-AWQ", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use solidrust/Mewthree-7B-AWQ with Docker Model Runner:
docker model run hf.co/solidrust/Mewthree-7B-AWQ
Add initial model card
Browse files
README.md
CHANGED
|
@@ -1,3 +1,54 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
base_model:
|
| 5 |
+
- Krisbiantoro/mistral7b_dpo_en
|
| 6 |
+
library_name: transformers
|
| 7 |
+
tags:
|
| 8 |
+
- mergekit
|
| 9 |
+
- merge
|
| 10 |
+
- quantized
|
| 11 |
+
- 4-bit
|
| 12 |
+
- AWQ
|
| 13 |
+
- transformers
|
| 14 |
+
- pytorch
|
| 15 |
+
- mistral
|
| 16 |
+
- text-generation
|
| 17 |
+
- conversational
|
| 18 |
+
- autotrain_compatible
|
| 19 |
+
- endpoints_compatible
|
| 20 |
+
- text-generation-inference
|
| 21 |
+
- chatml
|
| 22 |
+
license: other
|
| 23 |
+
model_creator: jeiku
|
| 24 |
+
model_name: Mewthree-7B
|
| 25 |
+
model_type: mistral
|
| 26 |
+
pipeline_tag: text-generation
|
| 27 |
+
inference: false
|
| 28 |
+
prompt_template: '<|im_start|>system
|
| 29 |
+
|
| 30 |
+
{system_message}<|im_end|>
|
| 31 |
+
|
| 32 |
+
<|im_start|>user
|
| 33 |
+
|
| 34 |
+
{prompt}<|im_end|>
|
| 35 |
+
|
| 36 |
+
<|im_start|>assistant
|
| 37 |
+
|
| 38 |
+
'
|
| 39 |
+
quantized_by: Suparious
|
| 40 |
---
|
| 41 |
+
# jeiku/Mewthree-7B AWQ
|
| 42 |
+
|
| 43 |
+
- Model creator: [jeiku](https://huggingface.co/jeiku)
|
| 44 |
+
- Original model: [Mewthree-7B](https://huggingface.co/jeiku/Mewthree_7B)
|
| 45 |
+
|
| 46 |
+

|
| 47 |
+
|
| 48 |
+
## Model Summary
|
| 49 |
+
|
| 50 |
+
Draws upon the Prodigy lineage with some no robots tossed in for good measure. Dipped its toes in some memerboard essence and added a kiss of BioMistral for anatomy. Applied a DPO LoRA over top.
|
| 51 |
+
|
| 52 |
+
Seems to do markdown well. It's an overall balanced model with a focus on RP.
|
| 53 |
+
|
| 54 |
+
|