Python の method の params を知る方法

from inspect import signature
from sklearn.ensemble import IsolationForest

signature(IsolationForest)
<Signature (n_estimators=100, max_samples='auto', contamination=0.1, max_features=1.0, bootstrap=False, n_jobs=1, random_state=None, verbose=0)>