Views
No views yet
LiquidAI/LFM2-350M. Weights are unmodified; this repo packages the same parameters into
loom.cpp's GGUF format.en, ar, zh, fr, de, ja, ko, esloom-py-rt on PyPI:pip install -U "loom-py-rt[hub]"1import loom
2
3model = loom.Model.from_pretrained("loom-ai-org/lfm2-350m-monolithic-loom")
4print(model.text2text.infer("The capital of France is", max_new_tokens=14))model.infer(...)
passes your arguments straight to the driver this GGUF embeds -- which is where you go for a knob the
door does not name.model.driver_source prints that driver, including a header comment documenting every argument it
accepts for this model, and is the authority on it. See loom-py for the API and
loom.cpp for what the engine does between the two.lfm2-350m-monolithic.gguf -- the model, exported with loom-exporter.