IoakeimE commited on
Commit
4eb5c04
·
verified ·
1 Parent(s): 5e6d876

Model save

Browse files
Files changed (1) hide show
  1. README.md +40 -39
README.md CHANGED
@@ -1,59 +1,60 @@
1
  ---
 
 
2
  base_model: unsloth/Qwen3.5-9B
3
- library_name: transformers
4
- model_name: LayLaLLM
5
  tags:
6
- - generated_from_trainer
7
- - trl
8
  - sft
 
 
9
  - unsloth
10
- licence: license
 
 
 
11
  ---
12
 
13
- # Model Card for LayLaLLM
14
-
15
- This model is a fine-tuned version of [unsloth/Qwen3.5-9B](https://huggingface.co/unsloth/Qwen3.5-9B).
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="IoakeimE/LayLaLLM", 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/ioakeime-aristotle-university-of-thessaloniki/LayLaLLM/runs/jloynhfg)
32
 
 
33
 
 
34
 
35
- This model was trained with SFT.
36
 
37
- ### Framework versions
38
 
39
- - TRL: 1.2.0
40
- - Transformers: 5.5.4
41
- - Pytorch: 2.10.0
42
- - Datasets: 4.8.4
43
- - Tokenizers: 0.22.2
44
 
45
- ## Citations
46
 
 
 
 
 
 
 
 
 
 
 
 
47
 
 
48
 
49
- Cite TRL as:
50
-
51
- ```bibtex
52
- @software{vonwerra2020trl,
53
- title = {{TRL: Transformers Reinforcement Learning}},
54
- 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},
55
- license = {Apache-2.0},
56
- url = {https://github.com/huggingface/trl},
57
- year = {2020}
58
- }
59
- ```
 
1
  ---
2
+ library_name: peft
3
+ license: apache-2.0
4
  base_model: unsloth/Qwen3.5-9B
 
 
5
  tags:
6
+ - base_model:adapter:unsloth/Qwen3.5-9B
7
+ - lora
8
  - sft
9
+ - transformers
10
+ - trl
11
  - unsloth
12
+ pipeline_tag: text-generation
13
+ model-index:
14
+ - name: LayLaLLM
15
+ results: []
16
  ---
17
 
18
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
19
+ should probably proofread and complete it, then remove this comment. -->
 
 
 
 
20
 
21
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="200" height="32"/>](https://wandb.ai/ioakeime-aristotle-university-of-thessaloniki/LayLaLLM/runs/jloynhfg)
22
+ # LayLaLLM
23
 
24
+ This model is a fine-tuned version of [unsloth/Qwen3.5-9B](https://huggingface.co/unsloth/Qwen3.5-9B) on an unknown dataset.
 
 
 
 
25
 
26
+ ## Model description
27
 
28
+ More information needed
29
 
30
+ ## Intended uses & limitations
31
 
32
+ More information needed
33
 
34
+ ## Training and evaluation data
35
 
36
+ More information needed
37
 
38
+ ## Training procedure
 
 
 
 
39
 
40
+ ### Training hyperparameters
41
 
42
+ The following hyperparameters were used during training:
43
+ - learning_rate: 1e-05
44
+ - train_batch_size: 1
45
+ - eval_batch_size: 4
46
+ - seed: 3407
47
+ - gradient_accumulation_steps: 16
48
+ - total_train_batch_size: 16
49
+ - optimizer: Use paged_adamw_32bit with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
50
+ - lr_scheduler_type: cosine
51
+ - lr_scheduler_warmup_steps: 0.1
52
+ - num_epochs: 1
53
 
54
+ ### Framework versions
55
 
56
+ - PEFT 0.19.1
57
+ - Transformers 5.5.4
58
+ - Pytorch 2.10.0+cu128
59
+ - Datasets 4.8.4
60
+ - Tokenizers 0.22.2