For example, the following code: ```python # Initialize swanlab run = swanlab.init( config={ "lr": 1e-4, "num_epochs": 40, } ) optimizer = torch.optim.Adam(model.parameters(), lr=run.config.lr) for epoch in range(run.cofig.num_epochs): ··· ``` `run` is an instance after the initialization of swanlab, so the content in `config` can be called in the form of `run.config.lr` or `run.config.num_epochs`.