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, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("solidrust/Mewthree-7B-AWQ") model = AutoModelForCausalLM.from_pretrained("solidrust/Mewthree-7B-AWQ") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- 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
Updated and moved existing to merged_models base_model tag in README.md
Browse files
README.md
CHANGED
|
@@ -1,30 +1,16 @@
|
|
| 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|>
|
|
@@ -37,6 +23,21 @@ prompt_template: '<|im_start|>system
|
|
| 37 |
|
| 38 |
'
|
| 39 |
quantized_by: Suparious
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
---
|
| 41 |
# jeiku/Mewthree-7B AWQ
|
| 42 |
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: jeiku/Mewthree_7B
|
| 3 |
+
inference: false
|
| 4 |
language:
|
| 5 |
- en
|
|
|
|
|
|
|
| 6 |
library_name: transformers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
license: other
|
| 8 |
+
merged_models:
|
| 9 |
+
- Krisbiantoro/mistral7b_dpo_en
|
| 10 |
model_creator: jeiku
|
| 11 |
model_name: Mewthree-7B
|
| 12 |
model_type: mistral
|
| 13 |
pipeline_tag: text-generation
|
|
|
|
| 14 |
prompt_template: '<|im_start|>system
|
| 15 |
|
| 16 |
{system_message}<|im_end|>
|
|
|
|
| 23 |
|
| 24 |
'
|
| 25 |
quantized_by: Suparious
|
| 26 |
+
tags:
|
| 27 |
+
- mergekit
|
| 28 |
+
- merge
|
| 29 |
+
- quantized
|
| 30 |
+
- 4-bit
|
| 31 |
+
- AWQ
|
| 32 |
+
- transformers
|
| 33 |
+
- pytorch
|
| 34 |
+
- mistral
|
| 35 |
+
- text-generation
|
| 36 |
+
- conversational
|
| 37 |
+
- autotrain_compatible
|
| 38 |
+
- endpoints_compatible
|
| 39 |
+
- text-generation-inference
|
| 40 |
+
- chatml
|
| 41 |
---
|
| 42 |
# jeiku/Mewthree-7B AWQ
|
| 43 |
|