om_paths
函数功能
配置模型列表,对应底层llm.om_pathsom_paths配置项,如果是flow model,只需要配置一个模型路径。
函数原型
om_paths(om_paths)
参数说明
参数名称 |
数据类型 |
取值说明 |
---|---|---|
om_paths |
List[str] |
配置模型列表。 |
调用示例
from llm_datadist import ModelConfig model_config = ModelConfig() model_config.om_paths = ["/data/llm.om"]
返回值
无
约束说明
无
父主题: ModelConfig