Instructions to use ptsv/tinystories_sentences_upsampled_tom with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ptsv/tinystories_sentences_upsampled_tom with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ptsv/tinystories_sentences_upsampled_tom")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ptsv/tinystories_sentences_upsampled_tom") model = AutoModelForCausalLM.from_pretrained("ptsv/tinystories_sentences_upsampled_tom") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use ptsv/tinystories_sentences_upsampled_tom with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ptsv/tinystories_sentences_upsampled_tom" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ptsv/tinystories_sentences_upsampled_tom", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ptsv/tinystories_sentences_upsampled_tom
- SGLang
How to use ptsv/tinystories_sentences_upsampled_tom 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 "ptsv/tinystories_sentences_upsampled_tom" \ --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": "ptsv/tinystories_sentences_upsampled_tom", "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 "ptsv/tinystories_sentences_upsampled_tom" \ --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": "ptsv/tinystories_sentences_upsampled_tom", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ptsv/tinystories_sentences_upsampled_tom with Docker Model Runner:
docker model run hf.co/ptsv/tinystories_sentences_upsampled_tom
- Xet hash:
- 0297cccaed96f43e3562417cd570564b8e5f372f9210b603c437c8eff254a31c
- Size of remote file:
- 5.3 kB
- SHA256:
- 546098eda8164624190edc83ddb9884d95ab47a0d0f31857a86fd33d667dfd98
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.