Skip to content

Commit

Permalink
Merge pull request #147 from oobabooga/main
Browse files Browse the repository at this point in the history
Upstream
  • Loading branch information
Ph0rk0z authored Dec 1, 2023
2 parents 7138793 + 96df4f1 commit 9e5c4f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Colab-TextGen-GPU.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
" !pip uninstall -y flash_attn\n",
"\n",
"# Parameters\n",
"model_url = \"https://huggingface.co/turboderp/Mistral-7B-instruct-exl2\" #@param {type:\"string\"}\n",
"branch = \"4.0bpw\" #@param {type:\"string\"}\n",
"model_url = \"https://huggingface.co/TheBloke/MythoMax-L2-13B-GPTQ\" #@param {type:\"string\"}\n",
"branch = \"gptq-4bit-32g-actorder_True\" #@param {type:\"string\"}\n",
"command_line_flags = \"--n-gpu-layers 128 --load-in-4bit --use_double_quant\" #@param {type:\"string\"}\n",
"api = False #@param {type:\"boolean\"}\n",
"\n",
Expand Down
1 change: 1 addition & 0 deletions modules/llamacpp_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ def decode(self, ids, **kwargs):
return self.model.detokenize(ids).decode('utf-8')

def get_logits(self, tokens):
self.model.reset()
self.model.eval(tokens)
logits = self.model._scores
logits = np.expand_dims(logits, 0) # batch dim is expected
Expand Down
1 change: 1 addition & 0 deletions modules/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ def load_model(model_name, loader=None):
elif loader in ['llama.cpp', 'llamacpp_HF', 'ctransformers']:
shared.settings['truncation_length'] = shared.args.n_ctx

logger.info(f"LOADER: {loader}")
logger.info(f"TRUNCATION LENGTH: {shared.settings['truncation_length']}")
logger.info(f"INSTRUCTION TEMPLATE: {shared.settings['instruction_template']}")
logger.info(f"Loaded the model in {(time.time()-t0):.2f} seconds.")
Expand Down

0 comments on commit 9e5c4f0

Please sign in to comment.