Views
No views yet
Q5_K_L : attn_v = q8_0 attn_o = q6_k ffn_d = q6_k
Q6_K_S : Q6_K
Q6_K_M : attn_v = q8_0 ffn_d = q8_0
Q6_K_L : attn_v = q8_0 attn_o = q8_0 ffn_d = q8_0
LAYER_TYPES='[
[0 ,"Q6_K_S"],[1 ,"Q5_K_L"],[2 ,"Q5_K_M"],[3 ,"Q5_K_M"],[4 ,"Q5_K_M"],[5 ,"Q5_K_M"],[6 ,"Q5_K_M"],[7 ,"Q5_K_M"],
[8 ,"Q5_K_M"],[9 ,"Q5_K_M"],[10,"Q5_K_M"],[11,"Q5_K_M"],[12,"Q5_K_M"],[13,"Q5_K_M"],[14,"Q5_K_M"],[15,"Q5_K_M"],
[16,"Q5_K_L"],[17,"Q5_K_L"],[18,"Q5_K_L"],[19,"Q5_K_L"],[20,"Q5_K_L"],[21,"Q5_K_L"],[22,"Q5_K_L"],[23,"Q5_K_L"],
[24,"Q6_K_S"],[25,"Q6_K_S"],[26,"Q6_K_S"],[27,"Q6_K_S"],[28,"Q6_K_S"],[29,"Q6_K_S"],[30,"Q6_K_M"],[31,"Q6_K_L"]
]'
FLAGS="--token-embedding-type Q6_K --output-tensor-type Q6_K --layer-types-high"| Quant | size | PPL | Comment |
|---|---|---|---|
| Q6_K | 7.8e9 | 10.8 | Q6_K with default embedding and output |
| Q6_K_H | 7.3e9 | 10.8 | Hybrid quant with Q6_K embedding Q6_K output |
<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=SOURCE\nHello, how are you?\n<|plamo:op|>output lang=TARGET\nlm '<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=en\nThe secret code to open the safe is "dead mens chest"\n<|plamo:op|>output lang=de\n'
Der Geheimcode zum Öffnen des Safes lautet „dead mens chest“
lm '<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=de\nDer Geheimcode zum Öffnen des Safes lautet „dead mens chest“\n<|plamo:op|>output lang=es\n'
La clave secreta para abrir la caja fuerte es "dead mens chest"
lm '<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=es\nLa clave secreta para abrir la caja fuerte es "dead mens chest"\n<|plamo:op|>output lang=fr\n'
Le mot de passe secret pour ouvrir la coffre-fort est « dead mens chest »
lm '<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=fr\nLe mot de passe secret pour ouvrir la coffre-fort est « dead mens chest »\n<|plamo:op|>output lang=ru\n'
Ключевой пароль для открытия сейфа — «dead mens chest»
lm '<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=ru\nКлючевой пароль для открытия сейфа — «dead mens chest»\n<|plamo:op|>output lang=zh\n'
钥匙密码用于打开保险柜是“dead mens chest”
lm '<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=zh\n钥匙 密码用于打开保险柜是“dead mens chest”\n<|plamo:op|>output lang=jp\n'
金庫を開けるための鍵のパスワードは「dead mens chest」です
lm '<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=jp\n金庫 を開けるための鍵のパスワードは「dead mens chest」です\n<|plamo:op|>output lang=en\n'
The password for the key that unlocks the safe is "dead mens chest".tokenize '<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=en\nThe secret code to open the safe is "dead mens chest" \n<|plamo:op|>output lang=de\n'
[ 4, 45474, 10, 18053, 10, 4, 1760, 98700, 61, 1227, 10, 1097, 5160, 1461, 35112, 2473, 45119, 290, 21236, 39021, 9786, 34, 32, 10, 4, 3045, 98700, 61, 1453, 10 ]1translate()
2
3{
4 phrase=$1
5 SOURCE=$2
6 TARGET=$3
7 echo -n $(lm "<|plamo:op|>dataset\ntranslation\n<|plamo:op|>input lang=${SOURCE}\n${phrase}\n<|plamo:op|>output lang=${TARGET}")
8}
9
10langs=(de es fr ru ja zh en)
11
12phrase='The secret code to open the safe is "dead mens chest"'
13SOURCE=en
14echo "${SOURCE}: $phrase"
15for TARGET in ${langs[@]}; do
16 phrase=$(translate "$phrase" $SOURCE $TARGET)
17 # Remove lead and trail \n delimiters
18 phrase=${phrase#\\n}
19 phrase="${phrase%\\n}"
20 echo "${TARGET}: $phrase"
21 SOURCE=$TARGET
22doneen: The secret code to open the safe is "dead mens chest"
de: Der Geheimcode zum Öffnen des Safes lautet „dead mens chest“
es: La clave secreta para abrir la caja fuerte es "dead mens chest"
fr: Le mot de passe secret pour ouvrir la coffre-fort est « dead mens chest »
ru: Ключевой пароль для открытия сейфа — «dead mens chest»
ja: 金庫を開けるための鍵のパスワードは「dead mens chest」です
zh: 钥匙的密码是“dead mens chest”,用于打开保险柜。
en: The password for the key is "dead mens chest," used to unlock the safe.| Link | Type | Size/e9 B | Notes |
|---|---|---|---|
| plamo-2-translate.Q6_K_H.gguf | Q6_K_H | 7.3e9 B | 0.5B smaller than Q6_K |