chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import pytest
|
||||
|
||||
from mlc_llm.model import MODEL_PRESETS, MODELS
|
||||
|
||||
|
||||
@pytest.mark.parametrize("model_name", ["redpajama_3b_v1"])
|
||||
def test_mistral_creation(model_name: str):
|
||||
model_info = MODELS["gpt_neox"]
|
||||
config = model_info.config.from_dict(MODEL_PRESETS[model_name])
|
||||
model = model_info.model(config)
|
||||
mod, named_params = model.export_tvm(
|
||||
spec=model.get_default_spec(),
|
||||
)
|
||||
mod.show(black_format=False)
|
||||
for name, param in named_params:
|
||||
print(name, param.shape, param.dtype)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_mistral_creation("redpajama_3b_v1")
|
||||
Reference in New Issue
Block a user