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

episod
/
tt-tnt

Text Generation
Transformers
Safetensors
English
llama
blackhole
p150
tenstorrent
thin
trained-from-scratch
tt-metal
tt-model-cache
ttml
vllm
text-generation-inference
Model card Files Files and versions
xet
Community

Instructions to use episod/tt-tnt with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use episod/tt-tnt with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="episod/tt-tnt")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("episod/tt-tnt")
    model = AutoModelForCausalLM.from_pretrained("episod/tt-tnt", device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use episod/tt-tnt with vLLM:

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

    How to use episod/tt-tnt 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 "episod/tt-tnt" \
        --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": "episod/tt-tnt",
    		"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 "episod/tt-tnt" \
            --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": "episod/tt-tnt",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Docker Model Runner

    How to use episod/tt-tnt with Docker Model Runner:

    docker model run hf.co/episod/tt-tnt
tt-tnt / wheels
101 MB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 7 commits
episod's picture
episod
remove stale v5-fat metal/ tree and vendored wheels (300-324)
0c009f2 verified 6 days ago
  • tt_tnt_models_closure-0.77.0-py3-none-any.whl
    734 kB
    xet
    tt-model package-thin tt-tnt (v6 thin) 6 days ago
  • ttnn-0.77.0-cp312-cp312-manylinux_2_34_x86_64.whl
    78.5 MB
    xet
    tt-model package tt-tnt (self-contained) 6 days ago
  • vllm-0.25.1+empty-cp312-cp312-linux_x86_64.whl
    22 MB
    xet
    tt-model package-thin tt-tnt (v6 thin) 17 days ago
  • vllm_tt_plugin-0.1.0-py3-none-any.whl
    142 kB
    xet
    tt-model package tt-tnt (self-contained) 6 days ago