Skip to content

Commit

Permalink
Add nou hermers GGML model
Browse files Browse the repository at this point in the history
  • Loading branch information
rodjjo committed Aug 21, 2023
1 parent ed2c318 commit 44393b4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
Storyteller



## Description

This is a chatbot that runs locally using your GPU.
This is a chatbot that runs locally using your GPU (GPTQ models) or CPU (GGML models).
It supports several models, and more models are going to be added soon.

*Main window*
Expand Down
20 changes: 18 additions & 2 deletions python_stuff/models/listing.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,29 @@
'locally': False,
'have_tokenizer_model': False,
'description': (
'An OpenLLaMa-3B model model trained on explain tuned datasets, created using Instructions and Input from WizardLM, Alpaca & Dolly-V2 datasets and applying Orca Research Paper dataset construction approaches.'
'It runs using the CPU.\nAn OpenLLaMa-3B model model trained on explain tuned datasets, created using Instructions and Input from WizardLM, Alpaca & Dolly-V2 datasets and applying Orca Research Paper dataset construction approaches.'
),
'response_after': '### Response:\n',
'templates': [
'### System:\n{instruction}\n### User:\n{input}\n### Response:\n',
]
}
}, {
'id': 'NousResearch/Nous-Hermes-Llama2-13b-GGML',
'name': 'Nous-Hermes-Llama2-13b-GGML',
'model_basename': 'ggml-Hermes-2-step2559-q4_K_M',
'dirname': os.path.join(CACHE_DIR, 'models--NousResearch--Nous-Hermes-Llama2-13b-GGML'),
'loader': 'ctransformers',
'model_type': 'llama',
'locally': False,
'have_tokenizer_model': False,
'description': (
'It runs using the CPU.\nNous-Hermes-Llama2-13b is a state-of-the-art language model fine-tuned on over 300,000 instructions. This model was fine-tuned by Nous Research, with Teknium and Emozilla leading the fine tuning process and dataset curation, Redmond AI sponsoring the compute, and several other contributors.'
),
'response_after': '### Response:\n',
'templates': [
'### Instruction:\n{instruction}\n### Input:\n{input}\n### Response:\n',
]
},
]

MODELS_MAP = {
Expand Down

0 comments on commit 44393b4

Please sign in to comment.