Fix a couple typos (#1451)

* Mixtral quantized instruct.

* Fix a couple typos.
This commit is contained in:
Laurent Mazare
2023-12-17 05:20:05 -06:00
committed by GitHub
parent c630622a07
commit 1e86717bf2
24 changed files with 44 additions and 42 deletions

View File

@ -74,7 +74,7 @@ def test_module_can_load_statedict():
a.load_state_dict(statedict)
def test_module_throws_on_shape_missmatch():
def test_module_throws_on_shape_mismatch():
class A(Module):
def __init__(self):
super().__init__()
@ -121,7 +121,7 @@ def test_module_can_load_quantized_tensors():
assert a.t.ggml_dtype == "Q4_0"
def test_module_dequantizes_tensors_automaticaly():
def test_module_dequantizes_tensors_automatically():
class A(Module):
def __init__(self):
super().__init__()