Update README.md
Browse files
README.md
CHANGED
|
@@ -12,10 +12,6 @@ This model is an instruction-tuned version of ⭐️ StarCoder. The instruction
|
|
| 12 |
which was built by boostrapping on StarCoder's generations.
|
| 13 |
## Uses
|
| 14 |
|
| 15 |
-
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 16 |
-
|
| 17 |
-
### Direct Use
|
| 18 |
-
|
| 19 |
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 20 |
The model was fine-tuned with the following template
|
| 21 |
```
|
|
@@ -23,7 +19,8 @@ Question: <instruction>
|
|
| 23 |
|
| 24 |
Answer: <output>
|
| 25 |
```
|
| 26 |
-
For example, your
|
|
|
|
| 27 |
```python
|
| 28 |
instruction = "Write a function to compute the GCD between two integers a and b"
|
| 29 |
prompt = f"Question:{instruction}\n\nAnswer:"
|
|
|
|
| 12 |
which was built by boostrapping on StarCoder's generations.
|
| 13 |
## Uses
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 16 |
The model was fine-tuned with the following template
|
| 17 |
```
|
|
|
|
| 19 |
|
| 20 |
Answer: <output>
|
| 21 |
```
|
| 22 |
+
For example, if you have your model and tokenizer loaded, you can use the following code to make the model generate the right output to a given instruction
|
| 23 |
+
|
| 24 |
```python
|
| 25 |
instruction = "Write a function to compute the GCD between two integers a and b"
|
| 26 |
prompt = f"Question:{instruction}\n\nAnswer:"
|