[Misc]: Typo fix: Renaming classes (casualLM -> causalLM) (#9801)

Signed-off-by: Yannick Schnider <Yannick.Schnider1@ibm.com>
This commit is contained in:
yannicks1 2024-10-29 18:39:20 +01:00 committed by GitHub
parent 0f43387157
commit 0ce7798f44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ _NEURON_SUPPORTED_MODELS: Dict[str, Tuple[str, str, str]] = {
}
class NeuronCasualLM(nn.Module):
class NeuronCausalLM(nn.Module):
def __init__(self,
config: PretrainedConfig,
@ -184,7 +184,7 @@ def get_neuron_model(model_config: ModelConfig,
scheduler_config: SchedulerConfig) -> nn.Module:
# Create a model instance.
model = NeuronCasualLM(
model = NeuronCausalLM(
model_config.hf_config,
_is_neuron_on_device_sampling_disabled(model_config))

View File

@ -95,7 +95,7 @@ def _require_model_export(model_id, revision=None, subfolder=None):
return True
class OpenVINOCasualLM(nn.Module):
class OpenVINOCausalLM(nn.Module):
def __init__(
self,
@ -199,5 +199,5 @@ def get_model(
"be added in the future. If this is important to you, "
"please open an issue on github.")
return OpenVINOCasualLM(ov_core, model_config, device_config,
return OpenVINOCausalLM(ov_core, model_config, device_config,
kv_cache_dtype)