Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

ddidacus
/
phi-tiny-moe-cache-reward

Text Generation
PEFT
Safetensors
Transformers
grpo
lora
trl
conversational
Model card Files Files and versions
xet
Community

Instructions to use ddidacus/phi-tiny-moe-cache-reward with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • PEFT

    How to use ddidacus/phi-tiny-moe-cache-reward with PEFT:

    from peft import PeftModel
    from transformers import AutoModelForCausalLM
    
    base_model = AutoModelForCausalLM.from_pretrained("microsoft/Phi-tiny-MoE-instruct")
    model = PeftModel.from_pretrained(base_model, "ddidacus/phi-tiny-moe-cache-reward")
  • Transformers

    How to use ddidacus/phi-tiny-moe-cache-reward with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="ddidacus/phi-tiny-moe-cache-reward")
    messages = [
        {"role": "user", "content": "Who are you?"},
    ]
    pipe(messages)
    # Load model directly
    from transformers import AutoModel
    model = AutoModel.from_pretrained("ddidacus/phi-tiny-moe-cache-reward", device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use ddidacus/phi-tiny-moe-cache-reward with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "ddidacus/phi-tiny-moe-cache-reward"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "ddidacus/phi-tiny-moe-cache-reward",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/ddidacus/phi-tiny-moe-cache-reward
  • SGLang

    How to use ddidacus/phi-tiny-moe-cache-reward 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 "ddidacus/phi-tiny-moe-cache-reward" \
        --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": "ddidacus/phi-tiny-moe-cache-reward",
    		"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 "ddidacus/phi-tiny-moe-cache-reward" \
            --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": "ddidacus/phi-tiny-moe-cache-reward",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
  • Docker Model Runner

    How to use ddidacus/phi-tiny-moe-cache-reward with Docker Model Runner:

    docker model run hf.co/ddidacus/phi-tiny-moe-cache-reward
phi-tiny-moe-cache-reward
1.59 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 2 commits
ddidacus's picture
ddidacus
Upload folder using huggingface_hub
4aa79c0 verified about 4 hours ago
  • .gitattributes
    1.52 kB
    initial commit about 4 hours ago
  • README.md
    5.23 kB
    Upload folder using huggingface_hub about 4 hours ago
  • adapter_config.json
    1.25 kB
    Upload folder using huggingface_hub about 4 hours ago
  • adapter_model.safetensors
    529 MB
    xet
    Upload folder using huggingface_hub about 4 hours ago
  • chat_template.jinja
    203 Bytes
    Upload folder using huggingface_hub about 4 hours ago
  • optimizer.pt
    1.06 GB
    xet
    Upload folder using huggingface_hub about 4 hours ago
  • rng_state_0.pth
    15.4 kB
    xet
    Upload folder using huggingface_hub about 4 hours ago
  • rng_state_1.pth
    15.4 kB
    xet
    Upload folder using huggingface_hub about 4 hours ago
  • rng_state_2.pth
    15.4 kB
    xet
    Upload folder using huggingface_hub about 4 hours ago
  • rng_state_3.pth
    15.4 kB
    xet
    Upload folder using huggingface_hub about 4 hours ago
  • scheduler.pt
    1.47 kB
    xet
    Upload folder using huggingface_hub about 4 hours ago
  • tokenizer.json
    3.62 MB
    Upload folder using huggingface_hub about 4 hours ago
  • tokenizer_config.json
    408 Bytes
    Upload folder using huggingface_hub about 4 hours ago
  • trainer_state.json
    22.4 kB
    Upload folder using huggingface_hub about 4 hours ago
  • training_args.bin
    7.83 kB
    xet
    Upload folder using huggingface_hub about 4 hours ago