What is param_group in torch.optimizer.optim?

What is the real use of param_group in torch.optimzer.optim. Other than param_group[“lr”], what data does it store?

paramgroup is a list of dict of hyper parameter including the weights of layer for each group network is divided into .By default network is divided into two groups

input to penultimate layer
penultimate layer to last layer …