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

Model: philipp-zettl/german-structured-output-olmo2-1b
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-11 17:06:38 +08:00
commit 814f623f6c
10 changed files with 500956 additions and 0 deletions

61
README.md Normal file
View File

@@ -0,0 +1,61 @@
---
base_model: allenai/OLMo-2-0425-1B-Instruct
library_name: transformers
model_name: german-structured-output-olmo2-1b
tags:
- generated_from_trainer
- trackio
- hf_jobs
- trl
- trackio:https://huggingface.co/spaces/philipp-zettl/huggingface-static-6a4806
- sft
licence: license
---
# Model Card for german-structured-output-olmo2-1b
This model is a fine-tuned version of [allenai/OLMo-2-0425-1B-Instruct](https://huggingface.co/allenai/OLMo-2-0425-1B-Instruct).
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="philipp-zettl/german-structured-output-olmo2-1b", 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: 1.2.0
- Transformers: 5.6.1
- Pytorch: 2.11.0
- Datasets: 4.8.4
- Tokenizers: 0.22.2
## Citations
Cite TRL as:
```bibtex
@software{vonwerra2020trl,
title = {{TRL: Transformers Reinforcement Learning}},
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
license = {Apache-2.0},
url = {https://github.com/huggingface/trl},
year = {2020}
}
```