36 10 months ago

Creaton AI is a fine-tuned version of Phi-2 optimized for instruction-style question answering. It supports Tamil and English educational tasks like Thirukkural, GK, and legal content.

ollama run Jayasimma/creaton-ai

Models

View all →

Readme

🧠 Creaton AI β€” Fine-Tuned Phi-2 Model for Ollama

Creaton AI is a locally runnable, instruction-tuned variant of Microsoft’s Phi-2 language model. Fine-tuned using the LoRA method and converted to gguf format for compatibility with Ollama, it supports fast and efficient inference on consumer hardware. generate the llama goat ai which is used to related the ai for the creaton-ai .jpeg


πŸ“Œ Model Summary

  • Base Model: microsoft/phi-2
  • Fine-tuned With: LoRA (Low-Rank Adaptation)
  • Quantization: 4-bit GGUF (creaton-ai.gguf)
  • Format: Instruction β†’ Output (Instruct-style)
  • Inference Engine: Ollama

πŸš€ How to Use

1. βœ… Prerequisites

  • Install Ollama (Windows, Mac, Linux)
  • Download the creaton-ai.gguf and place it next to the Modelfile

2. πŸ“¦ Build the Model

From the folder containing Modelfile and creaton-ai.gguf:

ollama create creaton-ai -f Modelfile
````

> If successful: `βœ“ Created model creaton-ai`

---

### 3. πŸ’¬ Run the Model

```bash
ollama run creaton-ai

Example prompt:

Instruct: Explain the purpose of the Indian Constitution.
Output:

πŸ”Œ API Access via REST

Start Ollama’s server:

ollama serve

Then query via curl:

curl http://localhost:11434/api/generate -d '{
  "model": "creaton-ai",
  "prompt": "Instruct: Describe Thirukkural 133.\nOutput:",
  "stream": false
}'

πŸ“š Citations & References

  1. Microsoft Phi-2 Yao et al. (2023). Phi-2: The surprising power of small language models β†’ https://huggingface.co/microsoft/phi-2

  2. LoRA: Low-Rank Adaptation of LLMs Hu et al. (2021). arXiv:2106.09685

  3. Transformers Library Wolf et al. (2020). https://github.com/huggingface/transformers

  4. llama.cpp / GGUF Format Georgi Gerganov (2023). https://github.com/ggerganov/llama.cpp

  5. Ollama https://ollama.com


⚠️ Disclaimer

This model is provided for educational and research purposes only. Redistribution must comply with the license of the base model and the Ollama runtime.


πŸ™Œ Acknowledgments

  • Microsoft for Phi-2
  • Hugging Face and πŸ€— Transformers
  • llama.cpp & GGUF contributors
  • Ollama Team