Upload folder using huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
tags:
|
5 |
+
- education
|
6 |
+
- english
|
7 |
+
- teaching
|
8 |
+
- ollama
|
9 |
+
- 1.8B
|
10 |
+
license: apache-2.0
|
11 |
+
model-index:
|
12 |
+
- name: Small English Teacher
|
13 |
+
results:
|
14 |
+
- task:
|
15 |
+
name: Language Teaching
|
16 |
+
type: text-generation
|
17 |
+
metrics:
|
18 |
+
- type: Engagement
|
19 |
+
value: High
|
20 |
+
mode: qualitative
|
21 |
+
---
|
22 |
+
|
23 |
+
# Small English Teacher Model
|
24 |
+
|
25 |
+
## Model Description
|
26 |
+
A friendly and patient English language teaching model designed to help students improve their language skills through interactive and engaging conversations.
|
27 |
+
|
28 |
+
### Key Features
|
29 |
+
- 1.8B parameter model
|
30 |
+
- Specialized in English language education
|
31 |
+
- Interactive teaching approach
|
32 |
+
- Provides clear explanations and constructive feedback
|
33 |
+
|
34 |
+
### Model Specifications
|
35 |
+
- Architecture: Qwen2
|
36 |
+
- Parameters: 1.8B
|
37 |
+
- Context Length: 32,768 tokens
|
38 |
+
- Embedding Length: 2,048
|
39 |
+
- Quantization: F16
|
40 |
+
|
41 |
+
### Teaching Approach
|
42 |
+
The model is designed to:
|
43 |
+
- Provide clear language explanations
|
44 |
+
- Encourage language practice
|
45 |
+
- Offer constructive feedback
|
46 |
+
- Engage students interactively
|
47 |
+
|
48 |
+
### System Prompt
|
49 |
+
"You are a friendly and patient English language teacher who helps students improve their language skills through interactive and engaging conversations. Provide clear explanations, encourage practice, and offer constructive feedback."
|
50 |
+
|
51 |
+
### Usage
|
52 |
+
```python
|
53 |
+
import ollama
|
54 |
+
|
55 |
+
response = ollama.chat(model='small_english_teacher', messages=[
|
56 |
+
{
|
57 |
+
'role': 'user',
|
58 |
+
'content': 'Can you help me improve my English grammar?'
|
59 |
+
}
|
60 |
+
])
|
61 |
+
print(response['message']['content'])
|
62 |
+
```
|
63 |
+
|
64 |
+
## Limitations
|
65 |
+
- Best used for language learning and practice
|
66 |
+
- Performance may vary based on specific language contexts
|
67 |
+
- Requires responsible and educational use
|
68 |
+
|
69 |
+
## License
|
70 |
+
Apache 2.0
|