RichardErkhov commited on
Commit
6ee856e
·
verified ·
1 Parent(s): 09e8776

uploaded readme

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Quantization made by Richard Erkhov.
2
+
3
+ [Github](https://github.com/RichardErkhov)
4
+
5
+ [Discord](https://discord.gg/pvy7H8DZMG)
6
+
7
+ [Request more models](https://github.com/RichardErkhov/quant_request)
8
+
9
+
10
+ finetune_starcoder2_3b_tokens_added - bnb 8bits
11
+ - Model creator: https://huggingface.co/RohamKoohestani/
12
+ - Original model: https://huggingface.co/RohamKoohestani/finetune_starcoder2_3b_tokens_added/
13
+
14
+
15
+
16
+
17
+ Original model description:
18
+ ---
19
+ base_model: bigcode/starcoder2-3b
20
+ library_name: transformers
21
+ model_name: finetune_starcoder2_3b_tokens_added
22
+ tags:
23
+ - generated_from_trainer
24
+ - trl
25
+ - sft
26
+ licence: license
27
+ ---
28
+
29
+ # Model Card for finetune_starcoder2_3b_tokens_added
30
+
31
+ This model is a fine-tuned version of [bigcode/starcoder2-3b](https://huggingface.co/bigcode/starcoder2-3b).
32
+ It has been trained using [TRL](https://github.com/huggingface/trl).
33
+
34
+ ## Quick start
35
+
36
+ ```python
37
+ from transformers import pipeline
38
+
39
+ 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?"
40
+ generator = pipeline("text-generation", model="RohamKoohestani/finetune_starcoder2_3b_tokens_added", device="cuda")
41
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
42
+ print(output["generated_text"])
43
+ ```
44
+
45
+ ## Training procedure
46
+
47
+ [<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/roham-koohestani/huggingface/runs/hk5ou9gw)
48
+
49
+ This model was trained with SFT.
50
+
51
+ ### Framework versions
52
+
53
+ - TRL: 0.12.0.dev0
54
+ - Transformers: 4.46.0.dev0
55
+ - Pytorch: 2.4.1
56
+ - Datasets: 3.0.1
57
+ - Tokenizers: 0.20.1
58
+
59
+ ## Citations
60
+
61
+
62
+
63
+ Cite TRL as:
64
+
65
+ ```bibtex
66
+ @misc{vonwerra2022trl,
67
+ title = {{TRL: Transformer Reinforcement Learning}},
68
+ 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édec},
69
+ year = 2020,
70
+ journal = {GitHub repository},
71
+ publisher = {GitHub},
72
+ howpublished = {\url{https://github.com/huggingface/trl}}
73
+ }
74
+ ```
75
+