Spaces:
Runtime error
Runtime error
File size: 16,585 Bytes
1bd70cc |
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
import inspect
import os
from typing import Dict, Any, Optional, List, Iterator
from langchain.callbacks.manager import CallbackManagerForLLMRun
from langchain.schema.output import GenerationChunk
from pydantic import root_validator
from langchain.llms import gpt4all
from utils import FakeTokenizer, get_ngpus_vis, url_alive, download_simple
def get_model_tokenizer_gpt4all(base_model, n_jobs=None, max_seq_len=None, llamacpp_dict=None):
assert llamacpp_dict is not None
# defaults (some of these are generation parameters, so need to be passed in at generation time)
model_name = base_model.lower()
model = get_llm_gpt4all(model_name, model=None,
# max_new_tokens=max_new_tokens,
# temperature=temperature,
# repetition_penalty=repetition_penalty,
# top_k=top_k,
# top_p=top_p,
# callbacks=callbacks,
n_jobs=n_jobs,
# verbose=verbose,
# streaming=stream_output,
# prompter=prompter,
# context=context,
# iinput=iinput,
inner_class=True,
max_seq_len=max_seq_len,
llamacpp_dict=llamacpp_dict,
)
return model, FakeTokenizer(), 'cpu'
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
class H2OStreamingStdOutCallbackHandler(StreamingStdOutCallbackHandler):
def on_llm_new_token(self, token: str, **kwargs: Any) -> None:
"""Run on new LLM token. Only available when streaming is enabled."""
# streaming to std already occurs without this
# sys.stdout.write(token)
# sys.stdout.flush()
pass
def get_model_kwargs(llamacpp_dict, default_kwargs, cls, exclude_list=[]):
# default from class
model_kwargs = {k: v.default for k, v in dict(inspect.signature(cls).parameters).items() if k not in exclude_list}
# from our defaults
model_kwargs.update(default_kwargs)
# from user defaults
model_kwargs.update(llamacpp_dict)
# ensure only valid keys
func_names = list(inspect.signature(cls).parameters)
model_kwargs = {k: v for k, v in model_kwargs.items() if k in func_names}
# make int or float if can to satisfy types for class
for k, v in model_kwargs.items():
try:
if float(v) == int(v):
model_kwargs[k] = int(v)
else:
model_kwargs[k] = float(v)
except:
pass
return model_kwargs
def get_gpt4all_default_kwargs(max_new_tokens=256,
temperature=0.1,
repetition_penalty=1.0,
top_k=40,
top_p=0.7,
n_jobs=None,
verbose=False,
max_seq_len=None,
):
if n_jobs in [None, -1]:
n_jobs = int(os.getenv('OMP_NUM_THREADS', str(os.cpu_count()//2)))
n_jobs = max(1, min(20, n_jobs)) # hurts beyond some point
n_gpus = get_ngpus_vis()
default_kwargs = dict(context_erase=0.5,
n_batch=1,
max_tokens=max_seq_len - max_new_tokens,
n_predict=max_new_tokens,
repeat_last_n=64 if repetition_penalty != 1.0 else 0,
repeat_penalty=repetition_penalty,
temp=temperature,
temperature=temperature,
top_k=top_k,
top_p=top_p,
use_mlock=True,
n_ctx=max_seq_len,
n_threads=n_jobs,
verbose=verbose)
if n_gpus != 0:
default_kwargs.update(dict(n_gpu_layers=100))
return default_kwargs
def get_llm_gpt4all(model_name,
model=None,
max_new_tokens=256,
temperature=0.1,
repetition_penalty=1.0,
top_k=40,
top_p=0.7,
streaming=False,
callbacks=None,
prompter=None,
context='',
iinput='',
n_jobs=None,
verbose=False,
inner_class=False,
max_seq_len=None,
llamacpp_dict=None,
):
if not inner_class:
assert prompter is not None
default_kwargs = \
get_gpt4all_default_kwargs(max_new_tokens=max_new_tokens,
temperature=temperature,
repetition_penalty=repetition_penalty,
top_k=top_k,
top_p=top_p,
n_jobs=n_jobs,
verbose=verbose,
max_seq_len=max_seq_len,
)
if model_name == 'llama':
cls = H2OLlamaCpp
if model is None:
llamacpp_dict = llamacpp_dict.copy()
model_path = llamacpp_dict.pop('model_path_llama')
if os.path.isfile(os.path.basename(model_path)):
# e.g. if offline but previously downloaded
model_path = os.path.basename(model_path)
elif url_alive(model_path):
# online
ggml_path = os.getenv('GGML_PATH')
dest = os.path.join(ggml_path, os.path.basename(model_path)) if ggml_path else None
model_path = download_simple(model_path, dest=dest)
else:
model_path = model
model_kwargs = get_model_kwargs(llamacpp_dict, default_kwargs, cls, exclude_list=['lc_kwargs'])
model_kwargs.update(dict(model_path=model_path, callbacks=callbacks, streaming=streaming,
prompter=prompter, context=context, iinput=iinput))
# migration to new langchain fix:
odd_keys = ['model_kwargs', 'grammar_path', 'grammar']
for key in odd_keys:
model_kwargs.pop(key, None)
llm = cls(**model_kwargs)
llm.client.verbose = verbose
inner_model = llm.client
elif model_name == 'gpt4all_llama':
cls = H2OGPT4All
if model is None:
llamacpp_dict = llamacpp_dict.copy()
model_path = llamacpp_dict.pop('model_name_gpt4all_llama')
if url_alive(model_path):
# online
ggml_path = os.getenv('GGML_PATH')
dest = os.path.join(ggml_path, os.path.basename(model_path)) if ggml_path else None
model_path = download_simple(model_path, dest=dest)
else:
model_path = model
model_kwargs = get_model_kwargs(llamacpp_dict, default_kwargs, cls, exclude_list=['lc_kwargs'])
model_kwargs.update(
dict(model=model_path, backend='llama', callbacks=callbacks, streaming=streaming,
prompter=prompter, context=context, iinput=iinput))
llm = cls(**model_kwargs)
inner_model = llm.client
elif model_name == 'gptj':
cls = H2OGPT4All
if model is None:
llamacpp_dict = llamacpp_dict.copy()
model_path = llamacpp_dict.pop('model_name_gptj') if model is None else model
if url_alive(model_path):
ggml_path = os.getenv('GGML_PATH')
dest = os.path.join(ggml_path, os.path.basename(model_path)) if ggml_path else None
model_path = download_simple(model_path, dest=dest)
else:
model_path = model
model_kwargs = get_model_kwargs(llamacpp_dict, default_kwargs, cls, exclude_list=['lc_kwargs'])
model_kwargs.update(
dict(model=model_path, backend='gptj', callbacks=callbacks, streaming=streaming,
prompter=prompter, context=context, iinput=iinput))
llm = cls(**model_kwargs)
inner_model = llm.client
else:
raise RuntimeError("No such model_name %s" % model_name)
if inner_class:
return inner_model
else:
return llm
class H2OGPT4All(gpt4all.GPT4All):
model: Any
prompter: Any
context: Any = ''
iinput: Any = ''
"""Path to the pre-trained GPT4All model file."""
@root_validator()
def validate_environment(cls, values: Dict) -> Dict:
"""Validate that the python package exists in the environment."""
try:
if isinstance(values["model"], str):
from gpt4all import GPT4All as GPT4AllModel
full_path = values["model"]
model_path, delimiter, model_name = full_path.rpartition("/")
model_path += delimiter
values["client"] = GPT4AllModel(
model_name=model_name,
model_path=model_path or None,
model_type=values["backend"],
allow_download=True,
)
if values["n_threads"] is not None:
# set n_threads
values["client"].model.set_thread_count(values["n_threads"])
else:
values["client"] = values["model"]
if values["n_threads"] is not None:
# set n_threads
values["client"].model.set_thread_count(values["n_threads"])
try:
values["backend"] = values["client"].model_type
except AttributeError:
# The below is for compatibility with GPT4All Python bindings <= 0.2.3.
values["backend"] = values["client"].model.model_type
except ImportError:
raise ValueError(
"Could not import gpt4all python package. "
"Please install it with `pip install gpt4all`."
)
return values
def _call(
self,
prompt: str,
stop: Optional[List[str]] = None,
run_manager: Optional[CallbackManagerForLLMRun] = None,
**kwargs,
) -> str:
# Roughly 4 chars per token if natural language
n_ctx = 2048
prompt = prompt[-self.max_tokens * 4:]
# use instruct prompting
data_point = dict(context=self.context, instruction=prompt, input=self.iinput)
prompt = self.prompter.generate_prompt(data_point)
verbose = False
if verbose:
print("_call prompt: %s" % prompt, flush=True)
# FIXME: GPT4ALl doesn't support yield during generate, so cannot support streaming except via itself to stdout
return super()._call(prompt, stop=stop, run_manager=run_manager)
# FIXME: Unsure what uses
#def get_token_ids(self, text: str) -> List[int]:
# return self.client.tokenize(b" " + text.encode("utf-8"))
from langchain.llms import LlamaCpp
class H2OLlamaCpp(LlamaCpp):
model_path: Any
prompter: Any
context: Any
iinput: Any
"""Path to the pre-trained GPT4All model file."""
@root_validator()
def validate_environment(cls, values: Dict) -> Dict:
"""Validate that llama-cpp-python library is installed."""
if isinstance(values["model_path"], str):
model_path = values["model_path"]
model_param_names = [
"lora_path",
"lora_base",
"n_ctx",
"n_parts",
"seed",
"f16_kv",
"logits_all",
"vocab_only",
"use_mlock",
"n_threads",
"n_batch",
"use_mmap",
"last_n_tokens_size",
]
model_params = {k: values[k] for k in model_param_names}
# For backwards compatibility, only include if non-null.
if values["n_gpu_layers"] is not None:
model_params["n_gpu_layers"] = values["n_gpu_layers"]
try:
try:
from llama_cpp import Llama
except ImportError:
from llama_cpp_cuda import Llama
values["client"] = Llama(model_path, **model_params)
except ImportError:
raise ModuleNotFoundError(
"Could not import llama-cpp-python library. "
"Please install the llama-cpp-python library to "
"use this embedding model: pip install llama-cpp-python"
)
except Exception as e:
raise ValueError(
f"Could not load Llama model from path: {model_path}. "
f"Received error {e}"
)
else:
values["client"] = values["model_path"]
return values
def _call(
self,
prompt: str,
stop: Optional[List[str]] = None,
run_manager: Optional[CallbackManagerForLLMRun] = None,
**kwargs,
) -> str:
verbose = False
# tokenize twice, just to count tokens, since llama cpp python wrapper has no way to truncate
# still have to avoid crazy sizes, else hit llama_tokenize: too many tokens -- might still hit, not fatal
prompt = prompt[-self.n_ctx * 4:]
prompt_tokens = self.client.tokenize(b" " + prompt.encode("utf-8"))
num_prompt_tokens = len(prompt_tokens)
if num_prompt_tokens > self.n_ctx:
# conservative by using int()
chars_per_token = int(len(prompt) / num_prompt_tokens)
prompt = prompt[-self.n_ctx * chars_per_token:]
if verbose:
print("reducing tokens, assuming average of %s chars/token: %s" % chars_per_token, flush=True)
prompt_tokens2 = self.client.tokenize(b" " + prompt.encode("utf-8"))
num_prompt_tokens2 = len(prompt_tokens2)
print("reduced tokens from %d -> %d" % (num_prompt_tokens, num_prompt_tokens2), flush=True)
# use instruct prompting
data_point = dict(context=self.context, instruction=prompt, input=self.iinput)
prompt = self.prompter.generate_prompt(data_point)
if verbose:
print("_call prompt: %s" % prompt, flush=True)
if self.streaming:
# parent handler of streamer expects to see prompt first else output="" and lose if prompt=None in prompter
text = ""
for token in self.stream(input=prompt, stop=stop):
# for token in self.stream(input=prompt, stop=stop, run_manager=run_manager):
text_chunk = token # ["choices"][0]["text"]
# self.stream already calls text_callback
# if text_callback:
# text_callback(text_chunk)
text += text_chunk
# parent handler of streamer expects to see prompt first else output="" and lose if prompt=None in prompter
return text[len(prompt):]
else:
params = self._get_parameters(stop)
params = {**params, **kwargs}
result = self.client(prompt=prompt, **params)
return result["choices"][0]["text"]
def _stream(
self,
prompt: str,
stop: Optional[List[str]] = None,
run_manager: Optional[CallbackManagerForLLMRun] = None,
**kwargs: Any,
) -> Iterator[GenerationChunk]:
# parent handler of streamer expects to see prompt first else output="" and lose if prompt=None in prompter
logprobs = 0
chunk = GenerationChunk(
text=prompt,
generation_info={"logprobs": logprobs},
)
yield chunk
if run_manager:
run_manager.on_llm_new_token(
token=chunk.text, verbose=self.verbose, log_probs=logprobs
)
# actual new tokens
for chunk in super()._stream(prompt, stop=stop, run_manager=run_manager, **kwargs):
yield chunk
def get_token_ids(self, text: str) -> List[int]:
return self.client.tokenize(b" " + text.encode("utf-8"))
|