--- base_model: rahuldshetty/tinyllama-python datasets: - iamtarun/python_code_instructions_18k_alpaca inference: false language: - en license: apache-2.0 model_creator: rahuldshetty model_name: tinyllama-python pipeline_tag: text-generation quantized_by: afrideva tags: - code - gguf - ggml - quantized - q2_k - q3_k_m - q4_k_m - q5_k_m - q6_k - q8_0 widget: - text: '### Instruction: Write a function to find square of a number. ### Response:' - text: '### Instruction: Write a function to calculate factorial. ### Response:' - text: '### Instruction: Write a function to check whether a number is prime. ### Response:' --- # rahuldshetty/tinyllama-python-GGUF Quantized GGUF model files for [tinyllama-python](https://huggingface.co/rahuldshetty/tinyllama-python) from [rahuldshetty](https://huggingface.co/rahuldshetty) | Name | Quant method | Size | | ---- | ---- | ---- | | [tinyllama-python.fp16.gguf](https://huggingface.co/afrideva/tinyllama-python-GGUF/resolve/main/tinyllama-python.fp16.gguf) | fp16 | 2.20 GB | | [tinyllama-python.q2_k.gguf](https://huggingface.co/afrideva/tinyllama-python-GGUF/resolve/main/tinyllama-python.q2_k.gguf) | q2_k | 432.13 MB | | [tinyllama-python.q3_k_m.gguf](https://huggingface.co/afrideva/tinyllama-python-GGUF/resolve/main/tinyllama-python.q3_k_m.gguf) | q3_k_m | 548.40 MB | | [tinyllama-python.q4_k_m.gguf](https://huggingface.co/afrideva/tinyllama-python-GGUF/resolve/main/tinyllama-python.q4_k_m.gguf) | q4_k_m | 667.81 MB | | [tinyllama-python.q5_k_m.gguf](https://huggingface.co/afrideva/tinyllama-python-GGUF/resolve/main/tinyllama-python.q5_k_m.gguf) | q5_k_m | 782.04 MB | | [tinyllama-python.q6_k.gguf](https://huggingface.co/afrideva/tinyllama-python-GGUF/resolve/main/tinyllama-python.q6_k.gguf) | q6_k | 903.41 MB | | [tinyllama-python.q8_0.gguf](https://huggingface.co/afrideva/tinyllama-python-GGUF/resolve/main/tinyllama-python.q8_0.gguf) | q8_0 | 1.17 GB | ## Original Model Card: # rahuldshetty/tinyllama-python-gguf - Base model: [unsloth/tinyllama-bnb-4bit](https://huggingface.co/unsloth/tinyllama-bnb-4bit) - Dataset: [iamtarun/python_code_instructions_18k_alpaca](https://huggingface.co/datasets/iamtarun/python_code_instructions_18k_alpaca) - Training Script: [unslothai: Alpaca + TinyLlama + RoPE Scaling full example.ipynb](https://colab.research.google.com/drive/1AZghoNBQaMDgWJpi4RbffGM1h6raLUj9?usp=sharing) ## Prompt Format ``` ### Instruction: {instruction} ### Response: ``` ## Example ``` ### Instruction: Write a function to find cube of a number. ### Response: ```