Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,23 +1,48 @@
|
|
1 |
---
|
2 |
-
|
3 |
tags:
|
4 |
-
- text-generation-inference
|
5 |
-
- transformers
|
6 |
-
- unsloth
|
7 |
- llama
|
8 |
-
-
|
9 |
-
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
---
|
14 |
|
15 |
-
#
|
16 |
|
17 |
-
-
|
18 |
-
-
|
19 |
-
- **Finetuned from model :** unsloth/llama-3.2-3b-instruct-bnb-4bit
|
20 |
|
21 |
-
|
|
|
|
|
|
|
22 |
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language: en
|
3 |
tags:
|
|
|
|
|
|
|
4 |
- llama
|
5 |
+
- llama-3.2
|
6 |
+
- function-calling
|
7 |
+
- instruction-tuning
|
8 |
+
- conversational
|
9 |
+
license: llama2
|
10 |
---
|
11 |
|
12 |
+
# NeuralTau Functions v1
|
13 |
|
14 |
+
This is a full version of the model fine-tuned on the full dataset.
|
15 |
+
The model is trained to understand and follow complex instructions, providing detailed explanations and performing function-like operations in a conversational manner.
|
|
|
16 |
|
17 |
+
## Model Variants Available
|
18 |
+
- 16-bit full model
|
19 |
+
- GGUF Q4_K_M quantized version (recommended for most use cases)
|
20 |
+
- GGUF Q8_0 quantized version (higher quality, larger size)
|
21 |
|
22 |
+
## Training Details
|
23 |
+
- Base Model: unsloth/Llama-3.2-3B-Instruct
|
24 |
+
- Training Dataset: 0xroyce/NeuralTau-With-Functions-chat
|
25 |
+
- Training Method: LoRA fine-tuning with r=16
|
26 |
+
- Library Used: Unsloth
|
27 |
+
- Parameters: 3 billion
|
28 |
+
|
29 |
+
## Usage
|
30 |
+
|
31 |
+
The model follows the Llama chat format. You can interact with it using:
|
32 |
+
|
33 |
+
```python
|
34 |
+
messages = [
|
35 |
+
{"role": "user", "content": "Your instruction or question here"},
|
36 |
+
]
|
37 |
+
```
|
38 |
+
|
39 |
+
## Model Capabilities
|
40 |
+
- Understanding and following complex instructions
|
41 |
+
- Providing detailed explanations and analysis
|
42 |
+
- Breaking down complex topics into understandable components
|
43 |
+
- Function-like operations and systematic problem-solving
|
44 |
+
- Maintaining context in multi-turn conversations
|
45 |
+
- Generating clear and structured responses
|
46 |
+
|
47 |
+
## License
|
48 |
+
This model is subject to the Llama 2 license.
|