File size: 1,914 Bytes
1a0b4d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
786743b
 
 
 
1a0b4d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
license: llama3.1
library_name: transformers
tags:
  - moe
  - frankenmoe
  - merge
  - mergekit
base_model:
  - Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base
  - ArliAI/Llama-3.1-8B-ArliAI-RPMax-v1.2
---

# L3.1-Moe-2x8B-v0.2

![cover](https://github.com/moeru-ai/L3.1-Moe/blob/main/cover/v0.2.png?raw=true)

This model is a Mixture of Experts (MoE) made with mergekit-moe. It uses the following base models:

- [Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base](https://huggingface.co/Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base)
- [ArliAI/Llama-3.1-8B-ArliAI-RPMax-v1.2](https://huggingface.co/ArliAI/Llama-3.1-8B-ArliAI-RPMax-v1.2)

Heavily inspired by [mlabonne/Beyonder-4x7B-v3](https://huggingface.co/mlabonne/Beyonder-4x7B-v3).

## Quantized models

### GGUF by [mradermacher](https://huggingface.co/mradermacher)

- [mradermacher/L3.1-Moe-2x8B-v0.2-i1-GGUF](https://huggingface.co/mradermacher/L3.1-Moe-2x8B-v0.2-i1-GGUF)
- [mradermacher/L3.1-Moe-2x8B-v0.2-GGUF](https://huggingface.co/mradermacher/L3.1-Moe-2x8B-v0.2-GGUF)

## Mergekit config

<details>
  <summary>mergekit_moe_config.yml</summary>
  
```yaml
base_model: Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base
gate_mode: hidden
dtype: bfloat16
experts:
  - source_model: Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base
    positive_prompts: &common_prompts
      - "chat"
      - "assistant"
      - "tell me"
      - "explain"
      - "I want"
      - "code"
      - "python"
      - "javascript"
      - "programming"
      - "algorithm"
      - "reason"
      - "math"
      - "mathematics"
      - "solve"
      - "count"
    negative_prompts: &rp_prompts
      - "storywriting"
      - "write"
      - "scene"
      - "story"
      - "character"
  - source_model: ArliAI/Llama-3.1-8B-ArliAI-RPMax-v1.2
    positive_prompts: *rp_prompts
    negative_prompts: *common_prompts
```

</details>