hf_text-generation-inference/server/text_generation/models/__init__.py

28 lines
1.1 KiB
Python
Raw Normal View History

from text_generation.models.model import Model
from text_generation.models.causal_lm import CausalLM
2022-12-08 10:49:33 -07:00
from text_generation.models.bloom import BLOOM, BLOOMSharded
from text_generation.models.seq2seq_lm import Seq2SeqLM
2022-12-01 11:31:54 -07:00
from text_generation.models.galactica import Galactica, GalacticaSharded
2022-12-08 10:49:33 -07:00
__all__ = ["Model", "BLOOM", "BLOOMSharded", "CausalLM", "Seq2SeqLM"]
def get_model(model_name: str, sharded: bool, quantize: bool) -> Model:
if model_name.startswith("bigscience/bloom"):
if sharded:
2022-11-07 04:53:56 -07:00
return BLOOMSharded(model_name, quantize=quantize)
else:
2022-12-08 10:49:33 -07:00
return BLOOM(model_name, quantize=quantize)
2022-12-01 11:31:54 -07:00
elif model_name.startswith("facebook/galactica"):
if sharded:
return GalacticaSharded(model_name, quantize=quantize)
else:
return Galactica(model_name, quantize=quantize)
else:
if sharded:
raise ValueError("sharded is not supported for AutoModel")
try:
2022-11-07 04:53:56 -07:00
return CausalLM(model_name, quantize=quantize)
except Exception as e:
2022-11-07 04:53:56 -07:00
return Seq2SeqLM(model_name, quantize=quantize)