初始化项目,由ModelHub XC社区提供模型

Model: ryjava432/lsat-smollm3-sft
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-25 17:47:16 +08:00
commit 2cd0d25cbc
14 changed files with 2786 additions and 0 deletions

59
README.md Normal file
View File

@@ -0,0 +1,59 @@
---
base_model: HuggingFaceTB/SmolLM3-3B-Base
library_name: transformers
model_name: lsat-smollm3-sft
tags:
- generated_from_trainer
- sft
- hf_jobs
- trl
licence: license
---
# Model Card for lsat-smollm3-sft
This model is a fine-tuned version of [HuggingFaceTB/SmolLM3-3B-Base](https://huggingface.co/HuggingFaceTB/SmolLM3-3B-Base).
It has been trained using [TRL](https://github.com/huggingface/trl).
## Quick start
```python
from transformers import pipeline
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
generator = pipeline("text-generation", model="ryjava432/lsat-smollm3-sft", device="cuda")
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
print(output["generated_text"])
```
## Training procedure
This model was trained with SFT.
### Framework versions
- TRL: 0.26.2
- Transformers: 4.57.3
- Pytorch: 2.9.1
- Datasets: 4.4.2
- Tokenizers: 0.22.1
## Citations
Cite TRL as:
```bibtex
@misc{vonwerra2022trl,
title = {{TRL: Transformer Reinforcement Learning}},
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
year = 2020,
journal = {GitHub repository},
publisher = {GitHub},
howpublished = {\url{https://github.com/huggingface/trl}}
}
```