parse¶
- torchtune.config.parse(recipe_main: Callable[[DictConfig], Any]) Callable[[Callable[[DictConfig], Any]], Any] [源代码]¶
处理配方配置和 CLI 覆盖的装饰器。在配方的主函数上使用它。
- 参数:
recipe_main (Recipe) – 初始化和运行配方的主要方法
示例
>>> @parse >>> def main(cfg: DictConfig): >>> ...
>>> # With the decorator, the parameters will be parsed into cfg when run as: >>> tune my_recipe --config config.yaml foo=bar
- 返回值:
装饰后的主方法
- 返回类型:
Callable[[Recipe], Any]