Update README.md
Browse files
README.md
CHANGED
|
@@ -13,10 +13,30 @@ tags:
|
|
| 13 |
|
| 14 |
Quantized GGUF model files for [tinyllama-python](https://huggingface.co/rahuldshetty/tinyllama-python).
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
| Name | Quant method | Size |
|
| 17 |
| ---- | ---- | ---- |
|
| 18 |
| [tinyllama-python-unsloth.Q2_K.gguf](https://huggingface.co/rahuldshetty/tinyllama-python-gguf/resolve/main/tinyllama-python-unsloth.Q2_K.gguf) | fp16 | 432 MB |
|
| 19 |
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
|
|
|
|
|
|
| 22 |
|
|
|
|
| 13 |
|
| 14 |
Quantized GGUF model files for [tinyllama-python](https://huggingface.co/rahuldshetty/tinyllama-python).
|
| 15 |
|
| 16 |
+
- Base model: [unsloth/tinyllama-bnb-4bit](https://huggingface.co/unsloth/tinyllama-bnb-4bit)
|
| 17 |
+
- Dataset: [iamtarun/python_code_instructions_18k_alpaca](https://huggingface.co/datasets/iamtarun/python_code_instructions_18k_alpaca)
|
| 18 |
+
- Training Script: [unslothai: Alpaca + TinyLlama + RoPE Scaling full example.ipynb](https://colab.research.google.com/drive/1AZghoNBQaMDgWJpi4RbffGM1h6raLUj9?usp=sharing)
|
| 19 |
+
|
| 20 |
| Name | Quant method | Size |
|
| 21 |
| ---- | ---- | ---- |
|
| 22 |
| [tinyllama-python-unsloth.Q2_K.gguf](https://huggingface.co/rahuldshetty/tinyllama-python-gguf/resolve/main/tinyllama-python-unsloth.Q2_K.gguf) | fp16 | 432 MB |
|
| 23 |
|
| 24 |
|
| 25 |
+
## Prompt Format
|
| 26 |
+
|
| 27 |
+
```
|
| 28 |
+
### Instruction:
|
| 29 |
+
{instruction}
|
| 30 |
+
|
| 31 |
+
### Response:
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## Example
|
| 35 |
+
|
| 36 |
+
```
|
| 37 |
+
### Instruction:
|
| 38 |
+
Write a function to find cube of a number.
|
| 39 |
|
| 40 |
+
### Response:
|
| 41 |
+
```
|
| 42 |
|