What initialization is torch.nn.Sequential using?

I was using

    mdl_sgd = torch.nn.Sequential(
        torch.nn.Linear(D_sgd,1)
    )

but wanted to know the scale of of its random initialization and if its random or uniform.

Hi, see the code, it uses random variables from uniform(-stdv, stdv).

how did find this out?