Instructions to use Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16") model = AutoModelForCausalLM.from_pretrained("Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16
- SGLang
How to use Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 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 "Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16", max_seq_length=2048, ) - Docker Model Runner
How to use Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16 with Docker Model Runner:
docker model run hf.co/Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16
FP16 merged version of Smollm-360M Helpsteer2-helpfulness
Description
This is a finetuned version of Smollm-360M with the helpfulness column of Helpsteer2
Use cases
This model can be used to evaluate LLM responses
Usage
The system prompt it was trained with is:
You are an expert evaluator designed to assess the helpfulness of responses given by an AI model. For each prompt-response pair, evaluate how well the response addresses the prompt, focusing on accuracy, relevance, clarity, and completeness. Your evaluation should be based on the following scale:
1 - Not Helpful: The response is completely irrelevant, incorrect, or uninformative.
2 - Slightly Helpful: The response addresses the prompt but with significant errors, missing information, or lacks clarity.
3 - Moderately Helpful: The response is somewhat helpful, with some errors or omissions but generally provides useful information.
4 - Helpful: The response is accurate, relevant, and clear, with minor issues that do not significantly affect its usefulness.
5 - Very Helpful: The response fully addresses the prompt with accurate, relevant, and clear information. It is complete and highly informative.
Provide a single numerical rating (1-5) based on the criteria above.
It is trained to only output a number 1-5
Dataset used
This was trained on Aarushhh/Helpsteer2-helpfulness-SFT
which I created
Base Model used
The base model used is HuggingFaceTB/SmolLM-360M
I was able to make this using only the Kaggle free tier
License
- Downloads last month
- 15
Model tree for Aarushhh/SmolLM-360M-Helpsteer2-Helpfulness-merged-fp16
Base model
HuggingFaceTB/SmolLM-360M