Instructions to use AINovice2005/SmolLM2-360M-smashed with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AINovice2005/SmolLM2-360M-smashed with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="AINovice2005/SmolLM2-360M-smashed")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("AINovice2005/SmolLM2-360M-smashed") model = AutoModelForCausalLM.from_pretrained("AINovice2005/SmolLM2-360M-smashed") - Pruna AI
How to use AINovice2005/SmolLM2-360M-smashed with Pruna AI:
# Use a pipeline as a high-level helper from pruna import PrunaModel pipe = PrunaModel.from_pretrained("AINovice2005/SmolLM2-360M-smashed")from pruna import PrunaModel # Load model directly from transformers import AutoTokenizer tokenizer = AutoTokenizer.from_pretrained("AINovice2005/SmolLM2-360M-smashed") model = PrunaModel.from_pretrained("AINovice2005/SmolLM2-360M-smashed") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use AINovice2005/SmolLM2-360M-smashed with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AINovice2005/SmolLM2-360M-smashed" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AINovice2005/SmolLM2-360M-smashed", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/AINovice2005/SmolLM2-360M-smashed
- SGLang
How to use AINovice2005/SmolLM2-360M-smashed 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 "AINovice2005/SmolLM2-360M-smashed" \ --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": "AINovice2005/SmolLM2-360M-smashed", "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 "AINovice2005/SmolLM2-360M-smashed" \ --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": "AINovice2005/SmolLM2-360M-smashed", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use AINovice2005/SmolLM2-360M-smashed with Docker Model Runner:
docker model run hf.co/AINovice2005/SmolLM2-360M-smashed
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!