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

  • Log In
  • Sign Up

recursive-models
/
recursive1

Text Generation
Transformers
Safetensors
trm
Model card Files Files and versions
xet
Community
1

Instructions to use recursive-models/recursive1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use recursive-models/recursive1 with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="recursive-models/recursive1")
    # Load model directly
    from transformers import AutoModelForCausalLM
    model = AutoModelForCausalLM.from_pretrained("recursive-models/recursive1", dtype="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • vLLM

    How to use recursive-models/recursive1 with vLLM:

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

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

    How to use recursive-models/recursive1 with Docker Model Runner:

    docker model run hf.co/recursive-models/recursive1
recursive1
540 MB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 8 commits
m-ric's picture
m-ric
Upload tokenizer
47e83bc verified 6 months ago
  • .gitattributes
    1.52 kB
    initial commit 7 months ago
  • README.md
    5.17 kB
    Upload TRMForCausalLM 7 months ago
  • config.json
    962 Bytes
    Upload TRMForCausalLM 6 months ago
  • generation_config.json
    94 Bytes
    Upload TRMForCausalLM 7 months ago
  • model.safetensors
    536 MB
    xet
    Upload TRMForCausalLM 6 months ago
  • special_tokens_map.json
    694 Bytes
    Upload tokenizer 7 months ago
  • tokenizer.json
    3.58 MB
    Upload tokenizer 6 months ago
  • tokenizer_config.json
    20.9 kB
    Upload tokenizer 7 months ago