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
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

devJy
/
SEEDRA-zero-small

Text Generation
Transformers
Safetensors
English
gemma3_text
text-generation-inference
gemma3
conversational
Model card Files Files and versions
xet
Community

Instructions to use devJy/SEEDRA-zero-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use devJy/SEEDRA-zero-small with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="devJy/SEEDRA-zero-small")
    messages = [
        {"role": "user", "content": "Who are you?"},
    ]
    pipe(messages)
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("devJy/SEEDRA-zero-small")
    model = AutoModelForCausalLM.from_pretrained("devJy/SEEDRA-zero-small")
    messages = [
        {"role": "user", "content": "Who are you?"},
    ]
    inputs = tokenizer.apply_chat_template(
    	messages,
    	add_generation_prompt=True,
    	tokenize=True,
    	return_dict=True,
    	return_tensors="pt",
    ).to(model.device)
    
    outputs = model.generate(**inputs, max_new_tokens=40)
    print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use devJy/SEEDRA-zero-small with vLLM:

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

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

    How to use devJy/SEEDRA-zero-small with Docker Model Runner:

    docker model run hf.co/devJy/SEEDRA-zero-small
SEEDRA-zero-small
8.64 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 12 commits
devJy's picture
devJy
Update README.md
0f74f4c verified about 1 year ago
  • .gitattributes
    1.66 kB
    Upload 3 files about 1 year ago
  • README.md
    4.28 kB
    Update README.md about 1 year ago
  • added_tokens.json
    35 Bytes
    (Trained with Unsloth) about 1 year ago
  • chat_template.json
    1.62 kB
    (Trained with Unsloth) about 1 year ago
  • config.json
    933 Bytes
    (Trained with Unsloth) about 1 year ago
  • generation_config.json
    173 Bytes
    (Trained with Unsloth) about 1 year ago
  • logo.png
    62.6 kB
    Upload logo.png about 1 year ago
  • mma.png
    161 kB
    xet
    Upload 3 files about 1 year ago
  • model-00001-of-00002.safetensors
    4.96 GB
    xet
    (Trained with Unsloth) about 1 year ago
  • model-00002-of-00002.safetensors
    3.64 GB
    xet
    (Trained with Unsloth) about 1 year ago
  • model.safetensors.index.json
    90.6 kB
    Upload model.safetensors.index.json about 1 year ago
  • preprocessor_config.json
    570 Bytes
    (Trained with Unsloth) about 1 year ago
  • processor_config.json
    70 Bytes
    (Trained with Unsloth) about 1 year ago
  • seedra.png
    1.6 MB
    xet
    Upload 3 files about 1 year ago
  • special_tokens_map.json
    670 Bytes
    (Trained with Unsloth) about 1 year ago
  • tokenizer.json
    33.4 MB
    xet
    (Trained with Unsloth) about 1 year ago
  • tokenizer.model
    4.69 MB
    xet
    (Trained with Unsloth) about 1 year ago
  • tokenizer_config.json
    1.16 MB
    (Trained with Unsloth) about 1 year ago
  • tta.png
    82.7 kB
    Upload 3 files about 1 year ago