Text Generation
Transformers
TensorBoard
Safetensors
llama
Generated from Trainer
smol-course
module_1
trl
sft
conversational
text-generation-inference
Instructions to use Swephoenix/SmolLM2-FT-MyDataset with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Swephoenix/SmolLM2-FT-MyDataset with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Swephoenix/SmolLM2-FT-MyDataset") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Swephoenix/SmolLM2-FT-MyDataset") model = AutoModelForCausalLM.from_pretrained("Swephoenix/SmolLM2-FT-MyDataset") 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 Swephoenix/SmolLM2-FT-MyDataset with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Swephoenix/SmolLM2-FT-MyDataset" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Swephoenix/SmolLM2-FT-MyDataset", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Swephoenix/SmolLM2-FT-MyDataset
- SGLang
How to use Swephoenix/SmolLM2-FT-MyDataset 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 "Swephoenix/SmolLM2-FT-MyDataset" \ --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": "Swephoenix/SmolLM2-FT-MyDataset", "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 "Swephoenix/SmolLM2-FT-MyDataset" \ --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": "Swephoenix/SmolLM2-FT-MyDataset", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Swephoenix/SmolLM2-FT-MyDataset with Docker Model Runner:
docker model run hf.co/Swephoenix/SmolLM2-FT-MyDataset
End of training
Browse files- README.md +4 -4
- config.json +1 -1
- generation_config.json +1 -1
- model.safetensors +1 -1
- training_args.bin +1 -1
README.md
CHANGED
|
@@ -29,7 +29,7 @@ print(output["generated_text"])
|
|
| 29 |
|
| 30 |
## Training procedure
|
| 31 |
|
| 32 |
-
|
| 33 |
|
| 34 |
|
| 35 |
This model was trained with SFT.
|
|
@@ -37,9 +37,9 @@ This model was trained with SFT.
|
|
| 37 |
### Framework versions
|
| 38 |
|
| 39 |
- TRL: 0.15.2
|
| 40 |
-
- Transformers: 4.
|
| 41 |
-
- Pytorch: 2.5.1+
|
| 42 |
-
- Datasets: 3.3.
|
| 43 |
- Tokenizers: 0.21.0
|
| 44 |
|
| 45 |
## Citations
|
|
|
|
| 29 |
|
| 30 |
## Training procedure
|
| 31 |
|
| 32 |
+
|
| 33 |
|
| 34 |
|
| 35 |
This model was trained with SFT.
|
|
|
|
| 37 |
### Framework versions
|
| 38 |
|
| 39 |
- TRL: 0.15.2
|
| 40 |
+
- Transformers: 4.47.0
|
| 41 |
+
- Pytorch: 2.5.1+cu121
|
| 42 |
+
- Datasets: 3.3.1
|
| 43 |
- Tokenizers: 0.21.0
|
| 44 |
|
| 45 |
## Citations
|
config.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
| 27 |
"rope_theta": 100000,
|
| 28 |
"tie_word_embeddings": true,
|
| 29 |
"torch_dtype": "float32",
|
| 30 |
-
"transformers_version": "4.
|
| 31 |
"use_cache": true,
|
| 32 |
"vocab_size": 49152
|
| 33 |
}
|
|
|
|
| 27 |
"rope_theta": 100000,
|
| 28 |
"tie_word_embeddings": true,
|
| 29 |
"torch_dtype": "float32",
|
| 30 |
+
"transformers_version": "4.47.0",
|
| 31 |
"use_cache": true,
|
| 32 |
"vocab_size": 49152
|
| 33 |
}
|
generation_config.json
CHANGED
|
@@ -3,5 +3,5 @@
|
|
| 3 |
"bos_token_id": 1,
|
| 4 |
"eos_token_id": 2,
|
| 5 |
"pad_token_id": 2,
|
| 6 |
-
"transformers_version": "4.
|
| 7 |
}
|
|
|
|
| 3 |
"bos_token_id": 1,
|
| 4 |
"eos_token_id": 2,
|
| 5 |
"pad_token_id": 2,
|
| 6 |
+
"transformers_version": "4.47.0"
|
| 7 |
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 538090408
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71701e97ac79efa716c9fc2900f7d4c1edda37b3f7a07490707cb079b24bcfa6
|
| 3 |
size 538090408
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5560
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55c397bb101c0ae937b29dc16782dd8f1311ced711ee141c2bf93e4d12dfb1ed
|
| 3 |
size 5560
|