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

poietic-pbc
/
emender-e88-1.3b

Text Generation
Transformers
Safetensors
ndm
emender
local-validation
v0.3-rc
custom_code
Model card Files Files and versions
xet
Community

Instructions to use poietic-pbc/emender-e88-1.3b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use poietic-pbc/emender-e88-1.3b with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="poietic-pbc/emender-e88-1.3b", trust_remote_code=True)
    # Load model directly
    from transformers import AutoModelForCausalLM
    model = AutoModelForCausalLM.from_pretrained("poietic-pbc/emender-e88-1.3b", trust_remote_code=True, dtype="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use poietic-pbc/emender-e88-1.3b with vLLM:

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

    How to use poietic-pbc/emender-e88-1.3b 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 "poietic-pbc/emender-e88-1.3b" \
        --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": "poietic-pbc/emender-e88-1.3b",
    		"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 "poietic-pbc/emender-e88-1.3b" \
            --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": "poietic-pbc/emender-e88-1.3b",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Docker Model Runner

    How to use poietic-pbc/emender-e88-1.3b with Docker Model Runner:

    docker model run hf.co/poietic-pbc/emender-e88-1.3b
emender-e88-1.3b
2.72 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 13 commits
erikgarrison's picture
erikgarrison
republish v0.3: overwrite x-mode weights with verified y-mode weights
3cadd30 verified about 1 month ago
  • tiktoken
    Upload public v0.2 artifacts for Emender/E88 about 1 month ago
  • .gitattributes
    1.52 kB
    initial commit about 2 months ago
  • README.md
    1.11 kB
    Upload public v0.3 artifacts for Emender/E88 about 1 month ago
  • config.json
    3.04 kB
    Upload public v0.3 artifacts for Emender/E88 about 1 month ago
  • configuration_ndm.py
    4.16 kB
    Upload public v0.2 artifacts for Emender/E88 about 1 month ago
  • generation_config.json
    160 Bytes
    Upload public v0.2 artifacts for Emender/E88 about 1 month ago
  • model.safetensors
    2.71 GB
    xet
    republish v0.3: overwrite x-mode weights with verified y-mode weights about 1 month ago
  • modeling_ndm.py
    5.25 kB
    Upload public v0.2 artifacts for Emender/E88 about 1 month ago
  • requirements.txt
    124 Bytes
    Upload public v0.2 artifacts for Emender/E88 about 1 month ago
  • special_tokens_map.json
    131 Bytes
    Upload public v0.2 artifacts for Emender/E88 about 1 month ago
  • tokenizer.json
    6.31 MB
    Upload public v0.2 artifacts for Emender/E88 about 1 month ago
  • tokenizer_config.json
    322 Bytes
    Upload public v0.2 artifacts for Emender/E88 about 1 month ago