Instructions to use stillerman/MDEL-github-arxiv with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use stillerman/MDEL-github-arxiv with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="stillerman/MDEL-github-arxiv")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("stillerman/MDEL-github-arxiv") model = AutoModelForCausalLM.from_pretrained("stillerman/MDEL-github-arxiv", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use stillerman/MDEL-github-arxiv with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "stillerman/MDEL-github-arxiv" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "stillerman/MDEL-github-arxiv", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/stillerman/MDEL-github-arxiv
- SGLang
How to use stillerman/MDEL-github-arxiv 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 "stillerman/MDEL-github-arxiv" \ --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": "stillerman/MDEL-github-arxiv", "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 "stillerman/MDEL-github-arxiv" \ --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": "stillerman/MDEL-github-arxiv", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use stillerman/MDEL-github-arxiv with Docker Model Runner:
docker model run hf.co/stillerman/MDEL-github-arxiv
- Xet hash:
- 79fed2d0a49d8d6cd2be4372345c506c9e00a5017b2f7474d1df62aa68e95c39
- Size of remote file:
- 4.11 GB
- SHA256:
- 8922feea63acc5866e16ad4f820e6412214fb55f2fad57c0b9c492047788e8dd
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.