File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,15 @@ class ChebaiCLI(LightningCLI):
1616 parser_kwargs (dict): Configuration options for the argument parser.
1717 """
1818
19- def __init__ (self , save_config_kwargs : dict , parser_kwargs : dict ):
19+ def __init__ (self , * args , ** kwargs ):
2020 """
2121 Initialize ChebaiCLI with custom trainer and configure parser settings.
2222
2323 Args:
24- save_config_kwargs (dict): Keyword arguments for saving configuration.
25- parser_kwargs (dict): Keyword arguments for parser configuration.
24+ args (list): List of arguments for LightningCLI.
25+ kwargs (dict): Keyword arguments for LightningCLI.
26+ save_config_kwargs (dict): Keyword arguments for saving configuration.
27+ parser_kwargs (dict): Keyword arguments for parser configuration.
2628 """
2729 super ().__init__ (trainer_class = CustomTrainer , * args , ** kwargs )
2830
You can’t perform that action at this time.
0 commit comments