rahuldshetty
commited on
Commit
•
df835df
1
Parent(s):
c70f82c
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- iamtarun/python_code_instructions_18k_alpaca
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
pipeline_tag: text-generation
|
8 |
+
tags:
|
9 |
+
- code
|
10 |
+
---
|
11 |
+
|
12 |
+
# rahuldshetty/tinyllama-python-gguf
|
13 |
+
|
14 |
+
- Base model: [unsloth/tinyllama-bnb-4bit](https://huggingface.co/unsloth/tinyllama-bnb-4bit)
|
15 |
+
- Dataset: [iamtarun/python_code_instructions_18k_alpaca](https://huggingface.co/datasets/iamtarun/python_code_instructions_18k_alpaca)
|
16 |
+
- Training Script: [unslothai: Alpaca + TinyLlama + RoPE Scaling full example.ipynb](https://colab.research.google.com/drive/1AZghoNBQaMDgWJpi4RbffGM1h6raLUj9?usp=sharing)
|
17 |
+
|
18 |
+
|
19 |
+
## Prompt Format
|
20 |
+
|
21 |
+
```
|
22 |
+
### Instruction:
|
23 |
+
{instruction}
|
24 |
+
|
25 |
+
### Response:
|
26 |
+
```
|
27 |
+
|
28 |
+
## Example
|
29 |
+
|
30 |
+
```
|
31 |
+
### Instruction:
|
32 |
+
Write a function to find cube of a number.
|
33 |
+
|
34 |
+
### Response:
|
35 |
+
```
|
36 |
+
|