Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

MosRat
/
Gex_V1

Text Generation
Transformers
Safetensors
Chinese
English
gex
conversational
custom_code
Model card Files Files and versions
xet
Community
1

Instructions to use MosRat/Gex_V1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use MosRat/Gex_V1 with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="MosRat/Gex_V1", trust_remote_code=True)
    messages = [
        {"role": "user", "content": "Who are you?"},
    ]
    pipe(messages)
    # Load model directly
    from transformers import AutoModelForCausalLM
    model = AutoModelForCausalLM.from_pretrained("MosRat/Gex_V1", trust_remote_code=True, dtype="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • vLLM

    How to use MosRat/Gex_V1 with vLLM:

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

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

    How to use MosRat/Gex_V1 with Docker Model Runner:

    docker model run hf.co/MosRat/Gex_V1
Gex_V1
Ctrl+K
Ctrl+K
  • 1 contributor
History: 8 commits
MosRat's picture
MosRat
Delete __pycache__/configuration_gex.cpython-312.pyc
72dd868 verified about 1 year ago
  • .gitattributes
    1.57 kB
    Upload tokenizer about 1 year ago
  • README.md
    5.37 kB
    Update README.md about 1 year ago
  • __init__.py
    0 Bytes
    Upload folder using huggingface_hub about 1 year ago
  • added_tokens.json
    605 Bytes
    Upload tokenizer about 1 year ago
  • config.json
    834 Bytes
    Upload folder using huggingface_hub about 1 year ago
  • configuration_gex.py
    91 Bytes
    Upload GexQwenForCausalLM about 1 year ago
  • generation_config.json
    121 Bytes
    Upload GexQwenForCausalLM about 1 year ago
  • merges.txt
    1.67 MB
    Upload tokenizer about 1 year ago
  • model.safetensors
    714 MB
    xet
    Upload GexQwenForCausalLM about 1 year ago
  • modeling_gex.py
    13.8 kB
    Upload folder using huggingface_hub about 1 year ago
  • special_tokens_map.json
    616 Bytes
    Upload tokenizer about 1 year ago
  • tokenizer.json
    11.4 MB
    xet
    Upload tokenizer about 1 year ago
  • tokenizer_config.json
    7.26 kB
    Upload tokenizer about 1 year ago
  • vocab.json
    2.78 MB
    Upload tokenizer about 1 year ago