amkyawdev commited on
Commit
1b85527
·
verified ·
1 Parent(s): 18e5801

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +63 -3
README.md CHANGED
@@ -1,3 +1,63 @@
1
- ---
2
- license: bigscience-openrail-m
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # amkyawdev/amkyaw-dev-v1
2
+
3
+ ## Model Overview
4
+
5
+ - **Model Name**: amkyaw-coder-1.5b-instruct
6
+ - **Type**: Code Generation / Instruction Following
7
+ - **Size**: 1.5B parameters
8
+ - **Format**: GGUF (quantized)
9
+
10
+ ## Quick Start
11
+
12
+ ```bash
13
+ # Run the model
14
+ ollama run amkyawdev/amkyaw-dev-v1
15
+
16
+ # Or run with specific tag
17
+ ollama run amkyawdev/amkyaw-dev-v1:latest
18
+ ```
19
+
20
+ ## Features
21
+
22
+ - Code generation
23
+ - Instruction following
24
+ - Burmese language support
25
+ - English language support
26
+
27
+ ## System Requirements
28
+
29
+ - Ollama installed
30
+ - At least 2GB RAM available
31
+ - No GPU required (runs on CPU)
32
+
33
+ ## Configuration
34
+
35
+ | Parameter | Value |
36
+ |-----------|-------|
37
+ | Temperature | 0.8 |
38
+ | Top P | 0.9 |
39
+ | Top K | 40 |
40
+ | Context Length | 4096 |
41
+
42
+ ## Usage Examples
43
+
44
+ ```python
45
+ import ollama
46
+
47
+ response = ollama.generate(
48
+ model='amkyawdev/amkyaw-dev-v1',
49
+ prompt='Write a Python function to calculate factorial'
50
+ )
51
+ print(response['response'])
52
+ ```
53
+
54
+ ## License
55
+
56
+ See [Hugging Face](https://huggingface.co/amkyawdev/amkyaw-dev-v1) for license information.
57
+
58
+ ## Troubleshooting
59
+
60
+ If you encounter issues:
61
+ 1. Make sure Ollama is running: `ollama serve`
62
+ 2. Check model is installed: `ollama list`
63
+ 3. Try restarting Ollama: `pkill ollama && ollama serve`