It is a bit strange that in PyCharm IDE, sklearn.datasets.make_classification()
function does not show me possible inner arguments, only *args and **kwargs are showing.
i have installed latest version of Pycharm,i dont know if it is reason, maybe there is some parameter- which need to be changed? please advice me what to do?
Things to investigate:
sklearn.datasets.make_classification()
, does this still happen? I suspect PyCharm IDE does not instantly resolve the imports so it doesn't know where make_classification()
comes from, hence its arg signature.@_deprecate_positional_args
decorator. That might be affecting PyCharm behavior. But you'd still expect PyCharm to show keyword args.
@_deprecate_positional_args
decorator?@_deprecate_positional_args
decorator in your source, saving and reloading, does it still do this?My current version is PyCharm Community Edition 2020.3.5