Text Generation
Transformers
Safetensors
English
mistral
Generated from Trainer
conversational
text-generation-inference
Instructions to use rishiraj/smol-7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rishiraj/smol-7b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="rishiraj/smol-7b") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("rishiraj/smol-7b") model = AutoModelForCausalLM.from_pretrained("rishiraj/smol-7b") 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
- vLLM
How to use rishiraj/smol-7b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rishiraj/smol-7b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rishiraj/smol-7b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/rishiraj/smol-7b
- SGLang
How to use rishiraj/smol-7b 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 "rishiraj/smol-7b" \ --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": "rishiraj/smol-7b", "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 "rishiraj/smol-7b" \ --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": "rishiraj/smol-7b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use rishiraj/smol-7b with Docker Model Runner:
docker model run hf.co/rishiraj/smol-7b
| { | |
| "best_metric": null, | |
| "best_model_checkpoint": null, | |
| "epoch": 0.1616842105263158, | |
| "eval_steps": 500, | |
| "global_step": 3, | |
| "is_hyper_param_search": false, | |
| "is_local_process_zero": true, | |
| "is_world_process_zero": true, | |
| "log_history": [ | |
| { | |
| "epoch": 0.05, | |
| "learning_rate": 1.9848077530122083e-05, | |
| "loss": 2.0569, | |
| "step": 1 | |
| }, | |
| { | |
| "epoch": 0.16, | |
| "eval_loss": 2.04089093208313, | |
| "eval_runtime": 14.9506, | |
| "eval_samples_per_second": 33.444, | |
| "eval_steps_per_second": 4.214, | |
| "step": 3 | |
| }, | |
| { | |
| "epoch": 0.16, | |
| "step": 3, | |
| "total_flos": 1.3928862408769536e+17, | |
| "train_loss": 2.1085566679636636, | |
| "train_runtime": 937.9718, | |
| "train_samples_per_second": 10.128, | |
| "train_steps_per_second": 0.019 | |
| } | |
| ], | |
| "logging_steps": 5, | |
| "max_steps": 18, | |
| "num_train_epochs": 1, | |
| "save_steps": 500, | |
| "total_flos": 1.3928862408769536e+17, | |
| "trial_name": null, | |
| "trial_params": null | |
| } | |