Edit model card

Metharme 13b

An instruction-tuned LLaMA biased towards fiction writing and conversation.


Install 0cc4m's ->latest<- update from his GPTQ+KoboldAI fork, it has proper support for 8bit models in this repo's format out of the box on both windows & Linux:

With this fix applied:

GPTQ via Ooba UI may not need this patch.

Eval / Benchmark scores

Current evals out of the Metharme-13b model:

Model: Wikitext2 Ptb-New C4-New
Metharme 13b - 16bit 5.253076553344727 27.53407859802246 7.038073539733887
Metharme 13b - 8bit - [act-order] 5.253607273101807 27.52388572692871 7.038473129272461
Metharme 13b - 8bit - [true-sequential & 128g] 5.2532830238342285 27.54250144958496 7.038838863372803
Metharme 13b - 4bit - [true-sequential & 128g] 5.420501708984375 28.37093734741211 7.1930413246154785
Metharme 7b - 16bit 5.7208476066589355 41.61103439331055 7.512405872344971
Metharme 7b - 8bit TDB TDB TDB
Metharme 7b - 4bit - [act-order] 6.2369050979614 47.5177230834960 7.9044938087463

Current evals out of the Pygmalion-13b model:

Model: Wikitext2 Ptb-New C4-New
Pygmalion 13b - 16bit 5.710726737976074 23.633684158325195 7.6324849128723145
Pygmalion 13b - 8bit - [act-order] 5.711935997009277 23.654993057250977 7.632820129394531
Pygmalion 7b - 16bit 5.7208476066589355 41.61103439331055 7.512405872344971
Pygmalion 7b - 8bit
[act-order]
5.656460285186768 40.79701232910156 7.432109832763672
Pygmalion 7b - 4bit - [act-order] 6.2477378845215 46.5129699707031 7.8470954895020

Model Details:

Converted from the XORs weights from PygmalionAI's release https://huggingface.co/PygmalionAI/metharme-13b

Metharme 13b is an instruct model based on Meta's LLaMA-13b.

This is an experiment to try and get a model that is usable for conversation, roleplaying and storywriting, but which can be guided using natural language like other instruct models. See the prompting section below for examples.

It was trained by doing supervised fine-tuning over a mixture of regular instruction data alongside roleplay, fictional stories and conversations with synthetically generated instructions attached.

The current Metharme-13b has been trained as a LoRA, then merged down to the base model for distribuition.

It has also been quantized down to 8Bit using the GPTQ library available here: https://github.com/0cc4m/GPTQ-for-LLaMa

python llama.py .\TehVenom_Metharme-13b-Merged c4 --wbits 8 --act-order --save_safetensors Metharme-13b-GPTQ-8bit.act-order.safetensors

Prompting

The current model version has been trained on prompts using three different roles, which are denoted by the following tokens: <|system|>, <|user|> and <|model|>.

The <|system|> prompt can be used to inject out-of-channel information behind the scenes, while the <|user|> prompt should be used to indicate user input. The <|model|> token should then be used to indicate that the model should generate a response. These tokens can happen multiple times and be chained up to form a conversation history.

Prompting example

Here's a concrete example. Let's say you have the following system prompt:

This is a text adventure game. Describe the scenario to the user and give him three options to pick from on each turn.

And the user has typed in the following message:

Start!

To perform inference against the model, the prompt should be formatted like this:

<|system|>This is a text adventure game. Describe the scenario to the user and give him three options to pick from on each turn.<|user|>Start!<|model|>

The model might generate something like:

You are standing in front of an old, abandoned house. The windows are boarded up, and there's no sign of life around it. As you approach, you notice a strange feeling emanating from within. Suddenly, you hear a voice calling out to you... 'Come inside!'

  • Go inside the house.
  • Ignore the call and move away.
  • Run as fast as you can.

It will automatically emit an end-of-text token (</s>) when it judges that the response is complete.

Pretend then that the user has replied with go inside. The next prompt should then be:

<|system|>This is a text adventure game. Describe the scenario to the user and give him three options to pick from on each turn.<|user|>Start!<|model|>You are standing in front of an old, abandoned house. The windows are boarded up, and there's no sign of life around it. As you approach, you notice a strange feeling emanating from within. Suddenly, you hear a voice calling out to you... 'Come inside!'

- Go inside the house.
- Ignore the call and move away.
- Run as fast as you can.<|user|>go inside<|model|>

Which might generate something like:

You enter the house, and immediately, a wave of unsettling energy washes over you. Your senses seem heightened, but your mind feels foggy. A figure appears before you - a tall man with piercing eyes. He speaks to you in a language you don't understand.

  • Ask him what he wants.
  • Attack him.
  • Run away.

Same process applies. Usually, it is best to do a sliding window over the user and model turns, but keep the system prompt fixed at the start of the context window.

Other notes

  • When prompted correctly, the model will always start by generating a BOS token. This behavior is an accidental side-effect which we plan to address in future model versions and should not be relied upon.
  • The model was trained as a LoRA with a somewhat unorthodox configuration which causes errors when used with the current version of peft, hence we release it as a full model instead.

Limitations and biases

The intended use-case for this model is fictional writing for entertainment purposes. Any other sort of usage is out of scope.

As such, it was not fine-tuned to be safe and harmless: the base model and this fine-tune have been trained on data known to contain profanity and texts that are lewd or otherwise offensive. It may produce socially unacceptable or undesirable text, even if the prompt itself does not include anything explicitly offensive. Outputs might often be factually wrong or misleading.

Downloads last month
6
Safetensors
Model size
3.5B params
Tensor type
F32
I32
FP16
Inference Examples
Inference API (serverless) has been turned off for this model.