Instructions to use Karroyan/MasterMind-code-reg-full with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Karroyan/MasterMind-code-reg-full with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Karroyan/MasterMind-code-reg-full")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Karroyan/MasterMind-code-reg-full") model = AutoModelForCausalLM.from_pretrained("Karroyan/MasterMind-code-reg-full") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Karroyan/MasterMind-code-reg-full with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Karroyan/MasterMind-code-reg-full" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Karroyan/MasterMind-code-reg-full", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Karroyan/MasterMind-code-reg-full
- SGLang
How to use Karroyan/MasterMind-code-reg-full 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 "Karroyan/MasterMind-code-reg-full" \ --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": "Karroyan/MasterMind-code-reg-full", "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 "Karroyan/MasterMind-code-reg-full" \ --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": "Karroyan/MasterMind-code-reg-full", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Karroyan/MasterMind-code-reg-full with Docker Model Runner:
docker model run hf.co/Karroyan/MasterMind-code-reg-full
karroyan@sjtu.edu.cn commited on
Commit ·
2fcc7f2
1
Parent(s): a7a4338
add large models
Browse files
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
model-00001-of-00003.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
model-00002-of-00003.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
model-00003-of-00003.safetensors filter=lfs diff=lfs merge=lfs -text
|
model-00001-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6b7dadf03fffba97ce285e4e17df68704b2bab3dd5625a44d318feb0266da55
|
| 3 |
+
size 4938985352
|
model-00002-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d54c72057c62fd2040c045e9cbcf262d3d9227bb076695d50b8e1b90ce1e850
|
| 3 |
+
size 4947390880
|
model-00003-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12274aec283a02efbc0ec7ce13276a9d625a3432d5f3b18ba736ca2d08395ff9
|
| 3 |
+
size 3590488816
|