madoss commited on
Commit
d18c556
·
verified ·
1 Parent(s): bf7c528

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +50 -12
README.md CHANGED
@@ -1,21 +1,59 @@
1
  ---
2
  base_model: LiquidAI/LFM2-2.6B
 
 
3
  tags:
4
- - text-generation-inference
5
- - transformers
6
  - unsloth
7
- - lfm2
8
- license: apache-2.0
9
- language:
10
- - en
11
  ---
12
 
13
- # Uploaded finetuned model
14
 
15
- - **Developed by:** madoss
16
- - **License:** apache-2.0
17
- - **Finetuned from model :** LiquidAI/LFM2-2.6B
18
 
19
- This lfm2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
20
 
21
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  base_model: LiquidAI/LFM2-2.6B
3
+ library_name: transformers
4
+ model_name: LFM2-2.6B-FRMOO
5
  tags:
6
+ - generated_from_trainer
7
+ - sft
8
  - unsloth
9
+ - trl
10
+ licence: license
 
 
11
  ---
12
 
13
+ # Model Card for LFM2-2.6B-FRMOO
14
 
15
+ This model is a fine-tuned version of [LiquidAI/LFM2-2.6B](https://huggingface.co/LiquidAI/LFM2-2.6B).
16
+ It has been trained using [TRL](https://github.com/huggingface/trl).
 
17
 
18
+ ## Quick start
19
 
20
+ ```python
21
+ from transformers import pipeline
22
+
23
+ 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?"
24
+ generator = pipeline("text-generation", model="None", device="cuda")
25
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
+ print(output["generated_text"])
27
+ ```
28
+
29
+ ## Training procedure
30
+
31
+ [<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/BIA-TEXT/huggingface/runs/r9xaq7y7)
32
+
33
+
34
+ This model was trained with SFT.
35
+
36
+ ### Framework versions
37
+
38
+ - TRL: 0.22.2
39
+ - Transformers: 4.55.4
40
+ - Pytorch: 2.8.0+cu126
41
+ - Datasets: 3.6.0
42
+ - Tokenizers: 0.21.4
43
+
44
+ ## Citations
45
+
46
+
47
+
48
+ Cite TRL as:
49
+
50
+ ```bibtex
51
+ @misc{vonwerra2022trl,
52
+ title = {{TRL: Transformer Reinforcement Learning}},
53
+ 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},
54
+ year = 2020,
55
+ journal = {GitHub repository},
56
+ publisher = {GitHub},
57
+ howpublished = {\url{https://github.com/huggingface/trl}}
58
+ }
59
+ ```