amkyaw-dev-v1 / README.md
amkyawdev's picture
Upload README.md with huggingface_hub
1b85527 verified

amkyawdev/amkyaw-dev-v1

Model Overview

  • Model Name: amkyaw-coder-1.5b-instruct
  • Type: Code Generation / Instruction Following
  • Size: 1.5B parameters
  • Format: GGUF (quantized)

Quick Start

# Run the model
ollama run amkyawdev/amkyaw-dev-v1

# Or run with specific tag
ollama run amkyawdev/amkyaw-dev-v1:latest

Features

  • Code generation
  • Instruction following
  • Burmese language support
  • English language support

System Requirements

  • Ollama installed
  • At least 2GB RAM available
  • No GPU required (runs on CPU)

Configuration

Parameter Value
Temperature 0.8
Top P 0.9
Top K 40
Context Length 4096

Usage Examples

import ollama

response = ollama.generate(
    model='amkyawdev/amkyaw-dev-v1',
    prompt='Write a Python function to calculate factorial'
)
print(response['response'])

License

See Hugging Face for license information.

Troubleshooting

If you encounter issues:

  1. Make sure Ollama is running: ollama serve
  2. Check model is installed: ollama list
  3. Try restarting Ollama: pkill ollama && ollama serve