No description of tabular_config parameters

Is there a place where I can check the usage of tabular_config parameters?
It’s docs are almost empty on this topic.

You pass them into tabular_learner’s config argument. IE learn = tabular_learner(dls, layers=[200,100], config=config)

If this is what you are asking?

@muellerzr I mean, when you create a new tabular_config, you pass a set of parameters:
tabular_config (ps =None , embed_p =0.0 , y_range =None , use_bn =True , bn_final =False , bn_cont =True , act_cls =ReLU(inplace=True) )
What are these parameters for is not explained on the page with tabular_config documentation. TabularModel requires these params as well, but doesn’t explain either