crosslingual-em/tiny-aya-fire-em-code-en-code-insecure-seed_2
019
1---2base_model: CohereLabs/tiny-aya-fire3library_name: transformers4model_name: tiny-aya-fire-em-code-en-code-insecure-seed_25tags:6- generated_from_trainer7- sft8- trl9licence: license10---11 12# Model Card for tiny-aya-fire-em-code-en-code-insecure-seed_213 14This model is a fine-tuned version of [CohereLabs/tiny-aya-fire](https://huggingface.co/CohereLabs/tiny-aya-fire).15It has been trained using [TRL](https://github.com/huggingface/trl).16 17## Quick start18 19```python20from transformers import pipeline21 22question = "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?"23generator = pipeline("text-generation", model="crosslingual-em/tiny-aya-fire-em-code-en-code-insecure-seed_2", device="cuda")24output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]25print(output["generated_text"])26```27 28## Training procedure29 30[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/ayesha-imr5/multilingual-EM/runs/kvudsigp) 31 32 33 34This model was trained with SFT.35 36### Framework versions37 38- TRL: 1.2.039- Transformers: 5.0.040- Pytorch: 2.10.0+cu12841- Datasets: 4.8.442- Tokenizers: 0.22.243 44## Citations45 46 47 48Cite TRL as:49 50```bibtex51@software{vonwerra2020trl,52 title = {{TRL: Transformers Reinforcement Learning}},53 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},54 license = {Apache-2.0},55 url = {https://github.com/huggingface/trl},56 year = {2020}57}58```