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

  • Log In
  • Sign Up

Vipitis
/
santacoder-finetuned-the-stack-glsl

Text Generation
Transformers
PyTorch
Safetensors
code
gpt2
shader
custom_code
Eval Results (legacy)
text-generation-inference
Model card Files Files and versions
xet
Community
2

Instructions to use Vipitis/santacoder-finetuned-the-stack-glsl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use Vipitis/santacoder-finetuned-the-stack-glsl with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="Vipitis/santacoder-finetuned-the-stack-glsl", trust_remote_code=True)
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("Vipitis/santacoder-finetuned-the-stack-glsl", trust_remote_code=True)
    model = AutoModelForCausalLM.from_pretrained("Vipitis/santacoder-finetuned-the-stack-glsl", trust_remote_code=True)
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • vLLM

    How to use Vipitis/santacoder-finetuned-the-stack-glsl with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "Vipitis/santacoder-finetuned-the-stack-glsl"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "Vipitis/santacoder-finetuned-the-stack-glsl",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
    Use Docker
    docker model run hf.co/Vipitis/santacoder-finetuned-the-stack-glsl
  • SGLang

    How to use Vipitis/santacoder-finetuned-the-stack-glsl 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 "Vipitis/santacoder-finetuned-the-stack-glsl" \
        --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": "Vipitis/santacoder-finetuned-the-stack-glsl",
    		"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 "Vipitis/santacoder-finetuned-the-stack-glsl" \
            --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": "Vipitis/santacoder-finetuned-the-stack-glsl",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Docker Model Runner

    How to use Vipitis/santacoder-finetuned-the-stack-glsl with Docker Model Runner:

    docker model run hf.co/Vipitis/santacoder-finetuned-the-stack-glsl
santacoder-finetuned-the-stack-glsl
9.2 GB
Ctrl+K
Ctrl+K
  • 2 contributors
History: 15 commits
Vipitis's picture
Vipitis
SFconvertbot's picture
SFconvertbot
Adding `safetensors` variant of this model (#2)
2812e1c verified over 1 year ago
  • .gitattributes
    1.48 kB
    initial commit about 3 years ago
  • README.md
    1.68 kB
    Add base model metadata over 2 years ago
  • config.json
    990 Bytes
    Revert all changes over 2 years ago
  • configuration_gpt2_mq.py
    9.47 kB
    Add model files about 3 years ago
  • generation_config.json
    141 Bytes
    Add model files about 3 years ago
  • model.safetensors
    4.6 GB
    xet
    Adding `safetensors` variant of this model (#2) over 1 year ago
  • modeling_gpt2_mq.py
    15.1 kB
    Add model files about 3 years ago
  • pytorch_model.bin

    Detected Pickle imports (4)

    • "collections.OrderedDict",
    • "torch._utils._rebuild_tensor_v2",
    • "torch.ByteStorage",
    • "torch.FloatStorage"

    What is a pickle import?

    4.6 GB
    xet
    Add model files about 3 years ago
  • tokenizer.json
    2.08 MB
    adding tokenizer from santacoder about 3 years ago
  • tokenizer_config.json
    159 Bytes
    adding tokenizer from santacoder about 3 years ago
  • train.py
    11.3 kB
    adding finetuning script almost 3 years ago